From fde48f6bc4b9e53336b5ac084cb0e0bd66a3bde0 Mon Sep 17 00:00:00 2001 From: RochDLY Date: Wed, 8 Nov 2023 04:20:36 +0100 Subject: =?UTF-8?q?correction=20dans=20le=20squelette=20du=20site=20pr?= =?UTF-8?q?=C3=A9sent=C3=A9=20dans=20le=20billet=2000?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/posts/2023-11-03-creation-du-site.html | 34 +++++++++++++++-------------- src/posts/2023-11-03-creation-du-site.md | 28 +++++++++++++----------- 2 files changed, 33 insertions(+), 29 deletions(-) diff --git a/docs/posts/2023-11-03-creation-du-site.html b/docs/posts/2023-11-03-creation-du-site.html index 8c11639..efad9ac 100644 --- a/docs/posts/2023-11-03-creation-du-site.html +++ b/docs/posts/2023-11-03-creation-du-site.html @@ -92,22 +92,24 @@ ├── posts │ ├── 2023-11-03-creation-du-site.md │ └── etc. -├── static - ├── css - │ └── styles.css -├── templates - ├── csl - │ └── apa.csl - ├── partials - │ ├── footer.html - │ ├── head.html - │ ├── header.html - │ └── nav.html - ├── index.html - └── post.html -├── Makefile -├── metadata.yaml -└── README.md + └── 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

Les commandes

La production du site est réalisée vie une série de commandes Make et Pandoc.

make clean
diff --git a/src/posts/2023-11-03-creation-du-site.md b/src/posts/2023-11-03-creation-du-site.md index cc76581..8c42c42 100644 --- a/src/posts/2023-11-03-creation-du-site.md +++ b/src/posts/2023-11-03-creation-du-site.md @@ -102,19 +102,21 @@ pandoc-ssg/ │ ├── posts │ │ ├── 2023-11-03-creation-du-site.md │ │ └── etc. -├── 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 -- cgit v1.2.3