aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: a01cc74c64a8df90ba6ef4e496491ca7c760d2e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
layout: default
---

<section 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 -%}
            &hyphen;
            <strong>{%- include reading-time.html -%}</strong>
        </small>
    </p>
</section>

<section>
    {{- content -}}
</section>

<section>
    {%- include comments.html -%}
</section>