{% extends "base.html" %}
{% block title %}
{{- page.title -}}
{% endblock %}
{% block main %}
{{ page.title }}
{%- if page.taxonomies %}
{%- for name, taxon in page.taxonomies %}
{{ name | capitalize }}:
{%- for item in taxon %}
{{ item }}
{%- endfor %}
{%- endfor %}
{%- endif %}
{{ page.content | safe }}
{% endblock %}
templates/page.html (view raw)