blob: 43b50d135cdac748ec465214cd1c97e21dda30e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "base.html" %}
{%- block content -%}
{% if section.content %}
{{ section.content | safe }}
{% endif %}
{% 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 -%}
|