1

14 lines
336 B
HTML

{% 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 content %}
{{ page.content | safe }}
{% endblock content %}