{% extends "_base.html" %} {% block page %}tag-list{% endblock page%} {% block lang -%} {% set blog_section_path = config.extra.blog_section_path | trim_start_matches(pat="/") %} {% set section_md_path = blog_section_path ~ "/_index.md"%} {% set section = get_section(path=section_md_path, metadata_only=true) %} {%- if section.extra.lang %}{{ section.extra.lang }}{% else %}{{ lang }}{% endif -%} {%- endblock lang %} {% block title %}Tags{% endblock title %} {% block content %} {% include "_header.html" %}
Tags
{% for tag in terms -%} # {{ tag.name | lower }} {%- endfor %}
{% include "_footer.html" %}
{% endblock content %}