2015-06-17 14:01:44 +02:00
|
|
|
<!-- <div class="page-header">
|
|
|
|
<h1>{{ page.title }} {% if page.tagline %}<small>{{page.tagline}}</small>{% endif %}</h1>
|
|
|
|
</div> -->
|
2015-06-16 10:54:48 +02:00
|
|
|
|
|
|
|
<div class="row-fluid post-full">
|
|
|
|
<div class="span12">
|
2015-06-17 14:01:44 +02:00
|
|
|
<h1>{{ page.title }}</h1>
|
2015-06-16 10:54:48 +02:00
|
|
|
<div class="date">
|
|
|
|
<span>{{ page.date | date_to_long_string }}</span>
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
{{ content }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% unless page.categories == empty %}
|
|
|
|
<ul class="tag_box inline">
|
|
|
|
<li><i class="icon-folder-open"></i></li>
|
|
|
|
{% assign categories_list = page.categories %}
|
|
|
|
{% include JB/categories_list %}
|
|
|
|
</ul>
|
|
|
|
{% endunless %}
|
|
|
|
|
|
|
|
{% unless page.tags == empty %}
|
|
|
|
<ul class="tag_box inline">
|
|
|
|
<li><i class="icon-tags"></i></li>
|
|
|
|
{% assign tags_list = page.tags %}
|
|
|
|
{% include JB/tags_list %}
|
|
|
|
</ul>
|
|
|
|
{% endunless %}
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
<div class="pagination">
|
|
|
|
<ul>
|
|
|
|
{% if page.previous %}
|
|
|
|
<li class="prev"><a href="{{ BASE_PATH }}{{ page.previous.url }}" title="{{ page.previous.title }}">← Previous</a></li>
|
|
|
|
{% else %}
|
|
|
|
<li class="prev disabled"><a>← Previous</a></li>
|
|
|
|
{% endif %}
|
|
|
|
<li><a href="{{ BASE_PATH }}{{ site.JB.archive_path }}">Archive</a></li>
|
|
|
|
{% if page.next %}
|
|
|
|
<li class="next"><a href="{{ BASE_PATH }}{{ page.next.url }}" title="{{ page.next.title }}">Next →</a></li>
|
|
|
|
{% else %}
|
|
|
|
<li class="next disabled"><a>Next →</a>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
{% include JB/comments %}
|
|
|
|
</div>
|
|
|
|
</div>
|