1
0
mirror of https://github.com/balkian/balkian.github.com.git synced 2024-09-19 23:21:43 +00:00
balkian.github.com/_layouts/post.html

19 lines
594 B
HTML
Raw Normal View History

2013-08-22 23:57:31 +00:00
---
layout: default
---
<div class="postnav">
2014-04-09 09:33:38 +00:00
<a href="{{ page.previous.url }}"><span class="previouspost"><i class="icon-chevron-sign-left"></i> {{ page.previous.title }}</a></span>
<span class='nextpost'><a href="{{ page.next.url }}">{{ page.next.title }} <i class="icon-chevron-sign-right"></i></span></a>
2013-08-22 23:57:31 +00:00
</div>
<div class="posthead">
<h2 class="title">{{ page.title }}</h2>
<span class="meta date">{{ page.date | date_to_string }}</span>
{% for c in page.tags %}
<span class="label label-success">{{ c }}</span>
{% endfor %}
</div>
<div class="post">
{{ content }}
</div>