summaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
authorBen Burwell <bburwell1@gmail.com>2014-12-27 16:42:05 -0500
committerBen Burwell <bburwell1@gmail.com>2014-12-27 16:42:05 -0500
commit3b563b3b82f4b4f20e66e1f9aea6dc16a08fc802 (patch)
treed2a1ee43c5c7cd74bd0ad98b5ab76899788bcf49 /_layouts/post.html
parenta2bf1568d77fb8644bd65b8d2edeacd1e34dc7f8 (diff)
Clean up markup & styles
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html19
1 files changed, 10 insertions, 9 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index be602fb..ca44314 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -2,12 +2,13 @@
layout: master
---
-<section class="article">
-
- <h1>{{ page.title }}</h1>
-
- <div class="date">{{ page.date | date: "%A, %-d %B %Y" }}</div>
-
- {{ content }}
-
-</section>
+<article itemscope itemtype="http://schema.org/BlogPosting" class="article">
+ <header>
+ <h1 itemprop="headline">{{ page.title }}</h1>
+ <div class="date"><time itemprop="datePublished">{{ page.date | date: "%A, %-d %B %Y" }}</time></div>
+ </header>
+
+ <div itemprop="articleBody">
+ {{ content }}
+ </div>
+</article>