{% 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 %}