Add 'themes/bear/' from commit 'eaa9b736adc01a57113e52134fc61aaf02af68ff' git-subtree-dir: themes/bear git-subtree-mainline: a4cf7f1366be44438f3801312fa411e41fba45c8 git-subtree-split: eaa9b736adc01a57113e52134fc61aaf02af68ff
1 file changed, 14 insertions(+), 0 deletions(-)
changed files
A 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 %}