summaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 6a491f934df0a989c6e6aa58f3933ca6f707dc22 (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
---
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 id="post-sub-header">
      <span 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>
      •
      <span itemprop="about">{{ page.description }}</span>
    </div>
  </header>

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

</article>