{% if let Some(hero) = hero %}
{% if let Some(image) = hero.image %}
{% if let Some(light_src) = image.light_src %} {% if let Some(dark_src) = image.dark_src %} {{ image.alt.as_deref().unwrap_or( {{ image.alt.as_deref().unwrap_or( {% else %} {{ image.alt.as_deref().unwrap_or( {% endif %} {% else %} {{ image.alt.as_deref().unwrap_or( {% endif %}
{% endif %}
{% if let Some(name) = hero.name %}

{{ name }}

{% endif %} {% if let Some(text) = hero.text %}

{{ text }}

{% endif %} {% if let Some(tagline) = hero.tagline %}

{{ tagline }}

{% endif %} {% if let Some(actions) = hero.actions %} {% if !actions.is_empty() %}
{% for action in actions %} {{ action.text }} {% endfor %}
{% endif %} {% endif %}
{% if let Some(notice) = hero.notice %}
{% if let Some(title) = notice.title %}

{{ title }}

{% endif %} {% if let Some(body) = notice.body %} {% for paragraph in body %}

{{ paragraph }}

{% endfor %} {% endif %}
{% endif %}
{% endif %} {% if let Some(features) = features %} {% if !features.is_empty() %}
{% for feature in features %} <{{ feature.tag }} class="feature-card"{{ feature.href_attr|safe }}> {% if let Some(icon_html) = feature.icon_html %}
{{ icon_html|safe }}
{% endif %}

{{ feature.title }}

{% if let Some(details) = feature.details %}

{{ details }}

{% endif %}
{% if feature.has_link %} {% endif %} {% endfor %}
{% endif %} {% endif %}