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

{% block main %}
  <main id="content">
    <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 %}