From 8fd8b7e53d59a034706dd7eaad6b608721ce3cdb Mon Sep 17 00:00:00 2001 From: seth Date: Wed, 22 May 2024 22:00:02 -0400 Subject: move to zola --- templates/index.html | 20 ++++++++++++++++++++ 1 file changed, 20 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..3617682 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,20 @@ +{% extends "base.html" %} + +{% block title %}{{ section.title }}{% endblock title %} +{% block description %}{{ section.description }}{% endblock description %} + +{% block content %} + +{{ section.content | safe }} + +
+ {% for gif in config.extra.gifs %} + {% set img = '' ~ gif.alt ~ '' %} + {% if gif.href %} + {{ img | safe }} + {% else %} + {{ img | safe }} + {% endif %} + {% endfor %} +
+{% endblock content %} -- cgit v1.2.3