site/_layouts/post.html

21 lines
484 B
HTML
Raw Normal View History

2014-10-20 20:33:40 +00:00
---
layout: default
---
2014-10-26 13:11:10 +00:00
<div class="container">
<div class="row">
<div class="col-md-12 post">
2014-10-20 20:33:40 +00:00
2014-10-26 13:11:10 +00:00
<header class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
<p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
</header>
2014-10-20 20:33:40 +00:00
2014-10-26 13:11:10 +00:00
<article class="post-content">
{{ content }}
</article>
</div>
</div>
2014-10-20 20:33:40 +00:00
</div>