{% extends "base.html" %} {% load static wagtailcore_tags wagtailimages_tags %} {% block content %} {# Hero Section #} {% if page.hero_image %}
{% if page.hero_title %}

{{ page.hero_title }}

{% endif %} {% if page.hero_text %}
{{ page.hero_text|richtext }}
{% endif %} {% if page.hero_button_text and page.hero_button_link %} {% endif %}
{% endif %} {# Content Sections #} {% for block in page.content_sections %} {% include_block block %} {% endfor %} {# Markets Widget #} {% if page.show_markets %} {% include "widgets/markets.html" %} {% endif %} {# Certifications Widget #} {% if page.show_certifications %} {% include "widgets/certifications.html" %} {% endif %} {# Contact Widget #} {% if page.show_contact %} {% include "widgets/contact.html" %} {% endif %} {% endblock %}