summaryrefslogtreecommitdiff
path: root/templates/tag.html.j2
blob: 093f41bdb4ec079b6556fc0848e9ba6d118cfcde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html.j2" %}
{% block page_title %}tags/{{ tag }} {{ super() }}{% endblock %}
{% block page_title_short %}tags/{{ tag }}{% endblock %}
{% block content %}
<h1 class="first-element">tags/{{ tag }}/</h1>
<p>{{ config.get_tag_prompt(tag, "find other_posts/ -type f -exec head {} +") }}</p>
{% for post in posts %}
<a href="{{ post.href }}" class="other_post dont-bother posts-listing-link {% if loop.last %}last-element{% endif%}">
<div>
<h3>{{ post.title() }}</h3>
<p>{{ post.intro }}</p>
</div>
<div>
<img src="{{ post.thumbnail }}" />
</div>
</a>
{% endfor %}
{% endblock %}