blob: 191e07904db0b7f13e265067b12468c5e849fac7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{% if section.extra.title or section.extra.subtitle %}
<div class="section-title">
{% if section.extra.title %}
<h1>{{ section.extra.title }}</h1>
{% endif %}
{% if section.extra.subtitle %}
<p>{{ section.extra.subtitle }}</p>
{% endif %}
</div>
{% endif %}
|