{% if let Some(hero) = hero %}
{% 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(image) = hero.image %}
{{ image.alt.as_deref().unwrap_or(
{% endif %} {% if let Some(actions) = hero.actions %} {% if !actions.is_empty() %}
{% for action in actions %} {{ action.text }} {% 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 %}