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