diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 33 |
1 files changed, 16 insertions, 17 deletions
@@ -4,7 +4,7 @@ Ce site a été construit avec [GNU Make 4.3](https://www.gnu.org/software/make/ ## Organisation des fichiers -``` +```bash pandoc-ssg/ ├── docs │ ├── css @@ -29,25 +29,24 @@ pandoc-ssg/ │ ├── posts │ │ ├── 2023-11-03-creation-du-site.md │ │ └── etc. -│ ├── index.md -│ └── metadata.yml -├── static -│ ├── css -│ │ └── styles.css -├── templates -│ ├── csl -│ │ └── apa.csl -│ ├── partials -│ │ ├── footer.html -│ │ ├── head.html -│ │ ├── header.html -│ │ └── nav.html -│ ├── index.html -│ └── post.html +│ └── static +│ ├── css +│ │ └── styles.css +│ ├── templates +│ │ ├── csl +│ │ │ └── apa.csl +│ │ ├── partials +│ │ │ ├── footer.html +│ │ │ ├── head.html +│ │ │ ├── header.html +│ │ │ └── nav.html +│ │ ├── index.html +│ │ └── post.html +│ ├── index.md +│ └── metadata.yml ├── Makefile ├── metadata.yaml └── README.md - ``` ## Production du site |