1
2022-11-25 14:58:40 -05:00

19 lines
492 B
HTML

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