aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 5c0c9489677da5395d194430a7436cc1826d9901 (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
---
layout: default
---

<div class="content">
  {% include navbar.html %}

  <article>
    <header class="header">
      <h1 class="header-title">
        {{ page.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
      </h1>
      <p class="header-annotation">
        <time datetime="{{ page.date | date_to_xmlschema}}">{{ page.date | date_to_long_string }}</time>
      </p>
    </header>

    {{ content }}
  </article>

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