1
ewpratten.com/templates/section.html

13 lines
317 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 content %}
{{ section.content | safe }}
{% endblock content %}