blob: 5c49cbad4add100bfabda8b1959f9d4ca7781b44 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | ---
layout: default
---
<div style="text-align: center;">
    <h1>{{- page.title | default: site.title | strip | normalize_whitespace | xml_escape -}}</h1>
    <p>
        <small>
            Posted
            <time datetime="{{- page.date | date_to_xmlschema | xml_escape -}}">{{- page.date | date: '%B %e, %Y' | strip | normalize_whitespace | xml_escape -}}</time>
            {%- include author.html -%}
            ‐
            <strong>{%- include reading-time.html -%}</strong>
        </small>
    </p>
</div>
{{- content -}}
{%- include comments.html -%}
 |