{% extends "base.html" %} {%- macro page_translation_link(translation, is_current=False) -%} {{ l[translation.lang].langname|e }} {%- endmacro -%} {% block html_lang %}{{ page.lang }}{% endblock %} {% block title %}{{ page.title|striptags }}{% endblock %} {% block extra_head %} {%- for translation in page.translations -%} {%- endfor -%} {% if page.summary %} {% endif %} {% endblock %} {% block content %}

{{ page.title }}

{%- call(s) get.metadata_entry(page.slug, l, 'before') -%} {{ render.sections(s, l) }} {%- endcall -%} {{ content_renderer.render_content(page.content, l) }} {%- call(s) get.metadata_entry(page.slug, l, 'after') -%} {{ render.sections(s, l) }} {%- endcall -%}
{% endblock %}