Add post meta back into post.hbs

This commit is contained in:
John O'Nolan
2014-07-21 20:37:05 +02:00
parent 41d4e2525b
commit 35adcc0fd3
2 changed files with 29 additions and 6 deletions

View File

@ -14,7 +14,12 @@
{{! Everything inside the #post tags pulls data from the post }}
{{#post}}
<h1 class="post-title">{{{title}}}</h1>
<header class="post-header">
<h1 class="post-title">{{{title}}}</h1>
<section class="post-meta">
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time> {{tags prefix=" on "}}
</section>
</header>
<section class="post-content">
{{content}}