16 lines
321 B
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> |