blob: 09ce8ad9d603228b9bb65d6d54d33b29ae195ee8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% 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 %}
|