Skip to content

Commit c3149c5

Browse files
show directory structure using .
├── build │   ├── about │   │   └── index.html │   ├── favicon.ico │   ├── feed.xml │   ├── hello-world │   │   └── index.html │   ├── index.html │   ├── sitemap.xml │   └── sitemap.xsl ├── dist │   ├── artifacts.json │   ├── CHANGELOG.md │   ├── config.yaml │   ├── gozer_0.1.1_checksums.txt │   ├── gozer_darwin_amd64_v1 │   │   └── gozer │   ├── gozer_darwin_arm64 │   │   └── gozer │   ├── gozer_Darwin_arm64.tar.gz │   ├── gozer_Darwin_x86_64.tar.gz │   ├── gozer_linux_386 │   │   └── gozer │   ├── gozer_linux_amd64_v1 │   │   └── gozer │   ├── gozer_linux_arm64 │   │   └── gozer │   ├── gozer_Linux_arm64.tar.gz │   ├── gozer_Linux_i386.tar.gz │   ├── gozer_Linux_x86_64.tar.gz │   └── metadata.json ├── example │   ├── config.toml │   ├── content │   │   ├── 2023-11-01-hello-world.md │   │   ├── about.md │   │   └── index.md │   ├── public │   │   └── favicon.ico │   └── templates │   └── default.html ├── fs.go ├── go.mod ├── go.sum ├── gozer.go ├── gozer_test.go ├── LICENSE ├── log.go ├── README.md └── sitemap.xsl 14 directories, 37 files output
1 parent b0e1ec4 commit c3149c5

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ You can install Gozer using one of the following methods:
2525
Run `gozer new` to quickly generate an empty directory structure.
2626

2727
```txt
28-
content/ # Your posts and pages
29-
templates/ # Your Go templates
30-
public/ # Any static files
31-
config.toml # Configuration file
28+
├── config.toml # Configuration file
29+
├── content # Posts and pages
30+
│ └── index.md
31+
├── public # Static files
32+
└── templates # Template files
33+
└── default.html
3234
```
3335

3436
Then, run `gozer build` to generate your site.

0 commit comments

Comments
 (0)