all repos — zola-bearblog @ 5f7390ee69cf214b2be78279a97bcadc8d6604e6

Port of bear blog theme to zola

templates/taxonomy_list.html (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}

{% block main %}
  <main>
    <h3 style="margin-bottom:0">{{ taxonomy.name | capitalize }}</h3>
    <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 %}