From d83836a971f54982bfcde5750834dfe4da369dc1 Mon Sep 17 00:00:00 2001 From: RochDLY Date: Tue, 7 Nov 2023 15:08:43 +0100 Subject: =?UTF-8?q?git=20init=20du=20carnet=20g=C3=A9n=C3=A9r=C3=A9=20avec?= =?UTF-8?q?=20make=20et=20pandoc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/csl/apa.csl | 1917 ++++++++++++++++++++++++++++++++++++++++ templates/index.html | 28 + templates/partials/footer.html | 9 + templates/partials/head.html | 22 + templates/partials/header.html | 3 + templates/partials/nav.html | 7 + templates/post.html | 43 + 7 files changed, 2029 insertions(+) create mode 100644 templates/csl/apa.csl create mode 100644 templates/index.html create mode 100644 templates/partials/footer.html create mode 100644 templates/partials/head.html create mode 100644 templates/partials/header.html create mode 100644 templates/partials/nav.html create mode 100644 templates/post.html (limited to 'templates') diff --git a/templates/csl/apa.csl b/templates/csl/apa.csl new file mode 100644 index 0000000..e8cd9ae --- /dev/null +++ b/templates/csl/apa.csl @@ -0,0 +1,1917 @@ + + diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..4605930 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,28 @@ + + + + ${partials/head.html()} + + + ${partials/header.html()} + ${if(title)} +
+
+

${title}

+
+
+ ${resume} +
+
+
+
+

Billets de blog

+
+
+ ${body} +
+
+ ${endif} + ${partials/footer.html()} + + \ No newline at end of file diff --git a/templates/partials/footer.html b/templates/partials/footer.html new file mode 100644 index 0000000..74dc87f --- /dev/null +++ b/templates/partials/footer.html @@ -0,0 +1,9 @@ + \ No newline at end of file diff --git a/templates/partials/head.html b/templates/partials/head.html new file mode 100644 index 0000000..2514919 --- /dev/null +++ b/templates/partials/head.html @@ -0,0 +1,22 @@ + + + + +${if(pagetitle)}${pagetitle}${endif} + +${if(author)} + +${endif} + +${if(description-meta)} + +${endif} + +${if(date)} + +${endif} + + + + + diff --git a/templates/partials/header.html b/templates/partials/header.html new file mode 100644 index 0000000..bbe014c --- /dev/null +++ b/templates/partials/header.html @@ -0,0 +1,3 @@ +
+ ${partials/nav.html()} +
\ No newline at end of file diff --git a/templates/partials/nav.html b/templates/partials/nav.html new file mode 100644 index 0000000..264edea --- /dev/null +++ b/templates/partials/nav.html @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/templates/post.html b/templates/post.html new file mode 100644 index 0000000..c349cf0 --- /dev/null +++ b/templates/post.html @@ -0,0 +1,43 @@ + + + + ${partials/head.html()} + + + ${partials/header.html()} + ${if(toc)} +
+ + +
+ ${endif} +
+${if(title)} +
+

${title}

+${if(subtitle)} +

${subtitle}

+${endif} +${if(date)} + +${endif} +${if(author)} +

${author}

+${endif} +
+${endif} +${if(body)} +
+${body} +${if(refs)} +

Références

+${refs} +${endif} +
+${endif} +
+${partials/footer.html()} + + \ No newline at end of file -- cgit v1.2.3