21 lines
510 B
HTML
21 lines
510 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<div class="content">
|
|
{% include navbar.html %}
|
|
|
|
<article>
|
|
<header class="header">
|
|
<h1 class="header-title">
|
|
{{ page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
|
|
</h1>
|
|
<p class="header-annotation">
|
|
{{ page.description | default: site.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
|
|
</p>
|
|
</header>
|
|
|
|
{{ content }}
|
|
</article>
|
|
</div>
|