aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: aa32f3ed70241c865454f40a531ac75a97da5934 (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
26
---
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 -}}">{{- page.date | date: '%B %e, %Y' | strip | normalize_whitespace | xml_escape -}}</time>
            by
            <a href="mailto:{{- site.email | strip | url_encode -}}?subject={{- page.title | default: site.title | strip | normalize_whitespace | xml_escape -}}">Valentin Popov</a>
            &nbsp;&hyphen;
            <strong>{%- include reading-time.html -%}</strong>
        </small>
    </p>
</section>

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

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