{% extends "base.html" %} {% block title %}Tags — Waikiki{% endblock %} {% block content %}

Tags — {{ current_wiki_name }}

Tag a page with a frontmatter block at the top: --- / tags: character, spirit / ---

{% if tags %}
{% for t in tags %} {{ t.tag }} {{ t.count }} {% endfor %}
{% else %}

No tags yet.

{% endif %} {% endblock %}