{% import "macros.html" as macros %} {% block title %} {% if current_path != "/" %} {{ config.title }} – {% if section.title %} {{ section.title }} {% elif page.title %} {{ page.title }} {% endif %} {% else %} {{ config.title }} {% endif %} {% endblock title %}
{% block content %}
{% if section %} {{ section.content | safe }} {% elif page %} {{ page.content | safe }} {% endif %}
{% endblock content %}