summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorseth <[email protected]>2024-07-05 18:26:55 -0400
committerseth <[email protected]>2024-08-23 08:30:48 -0400
commit67fba5edad38f8a4651a6a782c7abdc696a464ff (patch)
tree1b2ad1572d8938a89e096955d5a46f519a16f5fb /templates/index.html
parent9135c80ee930045c889f64269735b8319896e2f4 (diff)
back to lume for the 1000th time
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html17
1 files changed, 0 insertions, 17 deletions
diff --git a/templates/index.html b/templates/index.html
deleted file mode 100644
index 8a9042f..0000000
--- a/templates/index.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-
- {{ section.content | safe }}
-
- <div id="gifs">
- {% for gif in config.extra.gifs %}
- {% set img = '<img src = "/imgs/gifs/' ~ gif.name ~'" alt="' ~ gif.alt ~ '" width=88 height=31 loading="lazy" decoding="async">' %}
- {% if gif.href %}
- <a href="{{ gif.href }}">{{ img | safe }}</a>
- {% else %}
- {{ img | safe }}
- {% endif %}
- {% endfor %}
- </div>
-{% endblock content %}