all repos — website @ 9c4fd37c97a87b9d1ab9e65b77e4578936b66323

My website

themes/bear/templates/taxonomy_list.html (view raw)

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