{% extends "base.html" %} {# Pass data through to the base template #} {% block variable_wormhole %} {{ super() }} {% set title = page.title %} {% set description = page.description %} {% set is_article = true %} {% endblock variable_wormhole %} {# Page content #} {% block page_start %} {% include "components/heading-card.html" %} {% endblock page_start %} {% block content %}

{{page.title}}

{{page.description}}

{{ page.content | safe }} {% endblock content %}