11ty-theme/src/_includes/partials/hero-section.html

16 lines
321 B
HTML

<header class="hero">
<div class="wrapper">
<div class="hero-content">
<h1>
{% if heroTitle %}
{{ heroTitle }}
{% else %}
{{ title }}
{% endif %}
</h1>
{% if description %}
<p>{{ description }}</p>
{% endif %}
</div>
</div>
</header>