1
ewpratten.com/templates/section.html
2022-11-25 14:36:06 -05:00

16 lines
411 B
HTML

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