diff options
Diffstat (limited to '_layouts/post.html')
-rw-r--r-- | _layouts/post.html | 19 |
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> |