summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/templates/index.html b/templates/index.html
deleted file mode 100644
index 9733821..0000000
--- a/templates/index.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
- {{ section.content | safe }}
-
- <div class="gif-buttons">
- {% for button in config.extra.buttons %}
- <div class="gif-button">
- {% set imageTag = '<img
- src="/imgs/buttons/' ~ button.name ~ '"
- alt="' ~ button.alt ~ '"
- width=88
- height=31
- decoding="async"
- loading="lazy"
- >' %}
- {% if button.link %}
- <a href="{{ button.link }}">{{ imageTag | safe }}</a>
- {% else %}
- {{ imageTag | safe }}
- {% endif %}
- </div>
- {% endfor %}
- </div>
-{% endblock content %}