27 lines
673 B
HTML
27 lines
673 B
HTML
---
|
|
layout: no-section
|
|
---
|
|
<div class="section">
|
|
<div class="center">
|
|
{% comment %}
|
|
Only set an icon if one is available for the page.
|
|
{% endcomment %}
|
|
|
|
{% if page.icon %}
|
|
<h1><i class="mdi mdi-{{ page.icon }}"></i> {{ page.title }}</h1>
|
|
{% else %}
|
|
<h1>{{ page.title }}</h1>
|
|
{% endif %}
|
|
|
|
{% comment %}
|
|
We'd rather not provide an empty tag for the description
|
|
wherever possible.
|
|
{% endcomment %}
|
|
{% if page.description %}
|
|
<p>{{ page.description }}</p>
|
|
{% endif %}
|
|
</div>
|
|
<h1 class="center"></h1>
|
|
|
|
{{ content }}
|
|
</div>
|