summaryrefslogtreecommitdiff
path: root/templates/index.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html.j2')
-rw-r--r--templates/index.html.j218
1 files changed, 0 insertions, 18 deletions
diff --git a/templates/index.html.j2 b/templates/index.html.j2
deleted file mode 100644
index 09ce8ad..0000000
--- a/templates/index.html.j2
+++ /dev/null
@@ -1,18 +0,0 @@
-{% extends "base.html.j2" %}
-{% block content %}
-{% for post in posts %}
-{% if loop.first %}
-<p class="first-element">{{ post.get_index_prompt() }}</p>
-{% else %}
-<p>{{ post.get_index_prompt() }}</p>
-{% endif %}
-<a class="posts-listing-link dont-bother" href="{{ post.href }}">
- <img src="{{ post.thumbnail }}" />
- <h2 class="index-title">{{ post.title() }}</h2>
- <p>{{ post.intro }}</p>
-</a>
-{% if not loop.last %}
-<hr>
-{% endif %}
-{% endfor %}
-{% endblock %}