{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block opengraph %} {% match description %} {% when Some with (description_content) %} {% when None %} {% endmatch %} {% endblock %} {% block description %} {% match description %} {% when Some with (description_content) %} {{ description_content }} {% when None %} A page on {{ settings.site_name }} {% endmatch %} {% endblock %} {% block content %} {% if draft == true -%}
⚠️ This page is marked as a draft! It may not yet be complete!
{% endif -%} {% if show_title == true -%}

{{ title }}

{% endif -%} {% for content_block in content_blocks %} {% include "resolve_content.html" %} {% endfor %} {% endblock %}