aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 5558446049542a84bce2dff67496b91fda9e0fff (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 class="container post">
    <article>
        <header>
            <h1 class="title">
                {{ page.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
            </h1>

            <h2 class="date">
                <time datetime="{{ page.date | date_to_xmlschema }}">
                    {{ page.date | date_to_long_string }}
                </time>
            </h2>
        </header>

        {{ content }}

        <div class="comments">
            {% include disqus.html %}
        </div>
    </article>
</section>