blob: 3c83c162b3e1261a22a4e5259aacae051bde62cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "base.html" %}
{% block content %}
<section class="posts">
<h1 class="post-title">Tags</h1>
{% for term in terms %}
<section>
<div class="post-content"><a href="{{ term.permalink }}" class="post-title-link">{{ term.name }}</a></div>
</section>
{% endfor %}
</section>
{% endblock %}
|