summary refs log tree commit diff stats
path: root/src/themes/serene/templates/_section_title.html
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 %}