{# Define layout of wiki headers and footers: logo, site name, search, user login/logout... The difference between this file and /templates/layout.html is sequence of panels, omission of many of the typical wiki navigation links, addition of custom_panels from snippets.html, and addition of LI tags containing panel headings (imported from snippets.cms_header). This theme is designed for use with "./ moin dump-html" command. #} {% extends "base.html" %} {% import "snippets.html" as snippets with context %} {% block layout %}
{{ snippets.before_header() }} {{ snippets.cms_header() }} {{ snippets.after_header() }}
{% block item -%}
{# client side javascript may add messages here #} {% for category, msg in get_flashed_messages(with_categories=true) %}

{{ msg }}

{% endfor %}
{% block content %} {# show.html or other template will provide content #} {% endblock %}
{%- endblock %}
{{ snippets.before_footer() }} {{ snippets.after_footer() }}
{% endblock %}