From d1d65c94b888c2959c9da799e4329161ede449ea Mon Sep 17 00:00:00 2001 From: Dennis Eriksen Date: Fri, 20 Jan 2023 12:06:49 +0100 Subject: Made Riker into a Zola-theme - Rikerz --- templates/index.html | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 templates/index.html (limited to 'templates/index.html') diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..222ea74 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,58 @@ + + + + +{% block head %} + + + + {% block title %}{{ config.extra.title }}{% endblock title %} + + + + + + + + +{% endblock head %} + + + +{% block header %} +
+ +

{{ config.extra.title }}

+
+{% endblock header %} + +
+{% block content %} +

{{ config.extra.intro }}

+
+

Archive

+ +{%- for year, posts in section.pages | group_by(attribute="year") %} + +

{{ year }}

+ {%- for post in posts %} + + + {%- endfor %} +{% endfor %} +
+ +{% endblock content %} +
+ +{% block footer %} + +{% endblock footer %} + + + -- cgit v1.2.3