From ef15a6ec8f14c2398cfd28786c83072888690718 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Tue, 31 Oct 2023 23:23:51 +0100 Subject: oijoij --- templates/blog-article.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 templates/blog-article.html (limited to 'templates/blog-article.html') diff --git a/templates/blog-article.html b/templates/blog-article.html new file mode 100644 index 0000000..ccdd019 --- /dev/null +++ b/templates/blog-article.html @@ -0,0 +1,21 @@ +{% extends "base.html" %} + +{% block content %} + +
+

{{ page.title }}

+
+

{{ page.date | date(format="%B %-d, %Y") }}

+

+ {% for tag in page.taxonomies["tags"] %} + #{{ tag }} + {%- endfor %} +

+
+
+ +
+{{ page.content | safe }} +
+ +{% endblock %} -- cgit