diff options
author | Ben Burwell <bburwell1@gmail.com> | 2014-04-30 19:56:37 -0400 |
---|---|---|
committer | Ben Burwell <bburwell1@gmail.com> | 2014-04-30 19:56:37 -0400 |
commit | c8db3b6866dda8c25ae54afe16611aa7c0cb7cd4 (patch) | |
tree | 100c383f65377dc7d22ac3028ea725629558ccf2 /_layouts/post.html | |
parent | 042ebd011194592ec155181dc41976493a07e54a (diff) |
Jekyll Init
Diffstat (limited to '_layouts/post.html')
-rw-r--r-- | _layouts/post.html | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 04e3586..fd75b03 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,9 +1,10 @@ --- -layout: default +layout: master --- -<h2>{{ page.title }}</h2> -<p class="meta">{{ page.date | date_to_string }}</p> +<h1>{{ page.title }}</h1> + +{% if page.date %} +<div class="date">{{ page.date | to_date_string }}</div> +{% endif %} -<div class="post"> {{ content }} -</div> |