about summary refs log tree commit diff stats
path: root/templates/taxonomy_list.html
blob: 98b8fc9fd0c7f6e2a55d75065e407e4a7d297bfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}

{% block main %}
  <main>
    <h1>{{ taxonomy.name | capitalize }}</h1>
    <small>
      <div>
        {% set tags = get_taxonomy(kind="tags") %}
        {% for post in tags.items %}
          <a href="{{ post.permalink }}">#{{ post.name }}</a>&nbsp;
        {% endfor %}
      </div>
    </small>
  </main>
{% endblock %}