all repos — zola-bearblog @ be8552ef29fc7b3aa2a2d9de541afe3ce9c24ec0

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
{% extends "base.html" %}

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