blob: d513db4d43372f4c86c8d8a7cacc58fb58ce119d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
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>
|