summaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 27dc55e9709ffa52d063f7398898bafde5896ee1 (plain)
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
27
28
29
30
31
32
33
---
layout: default
---
<article itemscope itemtype="http://schema.org/BlogPosting">

  <header id="post-header">
    <h1 id="post-headline" itemprop="name headline">
      {{ page.title | escape }}
    </h1>
    <div class="light">
      <span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
        <span itemprop="name">{{ site.author }}</span>
      </span>
      <!-- • -->
      <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
        {{ page.date | date: "%b %-d, %Y" }}
      </time>
      •
      {%- if page.updated %}
      <time datetime="{{ page.updated | date_to_xmlschema }}" itemprop="dateModified">
        (Updated {{ page.updated | date: "%b %-d, %Y" }})
      </time>
      •
      {% endif -%}
      <span itemprop="about"><em>{{ page.description }}</em></span>
    </div>
  </header>

  <div id="post-content" itemprop="articleBody">
    {{ content }}
  </div>

</article>