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