{# Landing page template — optional hero section with configurable content. Activate via page metadata: template: landing.html Hero fields (all optional): hero_title, hero_subtitle, hero_primary_url, hero_primary_text, hero_secondary_url, hero_secondary_text, hero_tags #} {% extends "layout.html" %} {%- block content %} Skip to content {% set is_landing = true %}
{% include "components/header.html" %}
{% if hero_title is defined and hero_title %}

{{ hero_title }}

{% if hero_subtitle is defined and hero_subtitle %}

{{ hero_subtitle }}

{% endif %} {% if hero_primary_text is defined and hero_primary_text %} {% endif %} {% if hero_tags is defined and hero_tags %}
{% for tag in hero_tags.split(',') %}{{ tag.strip() }}{% endfor %}
{% endif %}
{% endif %}
{% block body %} {{ body }} {% endblock body %}
{% include "components/search-modal.html" %} {%- endblock %}