{% extends "base.html" %} {# Pass data through to the base template #} {% block variable_wormhole %} {{ super() }} {% set page_path = section.path %} {% set title = section.title %} {% set description = section.description %} {% if section.extra.uses %} {% set feature_flags = section.extra.uses %} {% endif %} {% if section.extra.redir_to %} {% set redirect_target = section.extra.redir_to %} {% 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 %} {# Blog post injection #} {% if section.extra.section_embed_mode == "blog_posts" %} {#