blob: 9182c43d7b82f6d2f8bb8f7b0595f0dfad3c4c9c (
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>
<section class="terms">
{% for term in terms %}
<div class="post-content"><a href="{{ term.permalink }}" class="post-title-link">#{{ term.name }}</a></div>
{% endfor %}
</section>
</section>
{% endblock %}
|