{% extends "base.html" %} {% block title %}{{ page.title }} | {{ super() }}{% endblock %} {%- block main -%} {%- if not page.extra?.menu -%}

{{ page.title }}

{%- if page.date %}

{%- endif %} {%- endif %} {%- if config.extra?.table_of_contents?.show and not page.extra?.hide_table_of_contents and page.toc %}
{{ trans(key="table_of_contents", lang=lang) }} {{ }}
{%- endif %}
{{ page.content | safe }}

{%- if page.taxonomies %} {%- for name, taxon in page.taxonomies %} {{ name | capitalize }}: {%- for item in taxon %} #{{ item }} {%- endfor %} {%- endfor %} {%- endif %}

{%- endblock main -%}