From 177a45e90453eacf818efd6afb69fa93661d3c51 Mon Sep 17 00:00:00 2001 From: Frederik Vanrenterghem Date: Sun, 17 Dec 2023 22:15:09 +0800 Subject: [PATCH] Voeg Mustache opmaak voor tags toe. --- html/post.mustache | 16 ++++++---------- html/tags-index.mustache | 22 ++++++++++++++++++++++ html/tags.mustache | 23 +++++++++++++++++++++++ 3 files changed, 51 insertions(+), 10 deletions(-) create mode 100644 html/tags-index.mustache create mode 100644 html/tags.mustache diff --git a/html/post.mustache b/html/post.mustache index e7d7cdc..a5605de 100644 --- a/html/post.mustache +++ b/html/post.mustache @@ -14,19 +14,15 @@
-
-
    - - - Tags: +
    + - Posted on {{{date}}} - {{#author}} - by {{{author}}} - {{/author}} +
    +
    +

    Posted on {{{date}}}

    {{title}}

    diff --git a/html/tags-index.mustache b/html/tags-index.mustache new file mode 100644 index 0000000..f59d0ea --- /dev/null +++ b/html/tags-index.mustache @@ -0,0 +1,22 @@ + + + + {{>head}} + {{>post-head}} + + + {{>navbar}} + +
    + + {{{contents}}} +
    + {{>footer}} + + diff --git a/html/tags.mustache b/html/tags.mustache new file mode 100644 index 0000000..ae086d9 --- /dev/null +++ b/html/tags.mustache @@ -0,0 +1,23 @@ + + + + {{>head}} + {{>post-head}} + + + {{>navbar}} + +
    +

    {{title}}

    + {{{contents}}} +
    + {{>footer}} + + -- 2.39.2