diff options
Diffstat (limited to 'themes/bear/templates/taxonomy_list.html')
-rw-r--r-- | themes/bear/templates/taxonomy_list.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/bear/templates/taxonomy_list.html b/themes/bear/templates/taxonomy_list.html new file mode 100644 index 0000000..69d9fa2 --- /dev/null +++ b/themes/bear/templates/taxonomy_list.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + +{% block main %} + <main> + <small> + <div> + {% set tags = get_taxonomy(kind="tags") %} + {% for post in tags.items %} + <a href="{{ post.permalink }}">#{{ post.name }}</a> + {% endfor %} + </div> + </small> + </main> +{% endblock %} |