{% import "widgets.html" as widgets %} {% set lang = section.lang | default(value=page.lang) %} {% set translations = section.translations | default(value=page.translations) %} {% block title %}{{ section.title }}{% endblock %}
{% set header = get_page(path="_common/header.md") %} {{ header.content | markdown | safe }} {% if translations %} {{ widgets::bubble(content=widgets::translations(translations=translations), v="top", h="right") }} {% endif %} {{ widgets::menu(content="_common/menu.md") }}
{% block main %} {{ section.content | markdown | safe }} {% endblock %}