blob: f1a8cbeb550d7fb94e72636c37f19a55924640ab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{%- block content -%}
{% if section.content %}
{{ section.content | safe }}
{% endif %}
<h2>Tags</h2>
{% set blogtags = get_taxonomy(kind="tags") %}
{% for tag in blogtags.items %}
<a href="{{ get_taxonomy_url(kind="tags", name=tag.name) }}">#{{ tag.name }}</a>
{% endfor %}
{%- endblock content -%}
|