blob: 54a086dc7e939e030854df8138b1b7c6943fd826 [file] [log] [blame]
<div class="page-header">
<h1>{{ page.title }} {% if page.tagline %}<small>{{page.tagline}}</small>{% endif %}</h1>
</div>
<div class="row-fluid post-full">
<div class="span12">
{% 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 %}
<div class="pagination row col-md-12">
<div class="col-md-6">
{% if page.previous %}
{% for post in site.pages %}
{% if post.name == page.previous %}
{% assign previous = post %}
<a href="{{ BASE_PATH }}{{ previous.url }}" title="{{ previous.title }}">&larr; {{ previous.title }}</a><br/>
{% endif %}
{% endfor %}
{% endif %}
</div>
<div class="col-md-6" style="text-align: right;">
{% if page.next %}
{% for post in site.pages %}
{% if post.name == page.next %}
{% assign next = post %}
<a href="{{ BASE_PATH }}{{ next.url }}" title="{{ next.title }}">{{ next.title }} &rarr;</a><br/>
{% endif %}
{% endfor %}
{% endif %}
</div>
</div>
<hr>
<div class="date">
<span>{{ page.date | date_to_long_string }}</span>
</div>
<div class="content">
{{ content }}
</div>
<div class="pagination row col-md-12">
<div class="col-md-6">
{% if page.previous %}
{% for post in site.pages %}
{% if post.name == page.previous %}
{% assign previous = post %}
<a href="{{ BASE_PATH }}{{ previous.url }}" title="{{ previous.title }}">&larr; {{ previous.title }}</a><br/>
{% endif %}
{% endfor %}
{% endif %}
</div>
<div class="col-md-6" style="text-align: right;">
{% if page.next %}
{% for post in site.pages %}
{% if post.name == page.next %}
{% assign next = post %}
<a href="{{ BASE_PATH }}{{ next.url }}" title="{{ next.title }}">{{ next.title }} &rarr;</a><br/>
{% endif %}
{% endfor %}
{% endif %}
</div>
</div>
{% include JB/comments %}
</div>
</div>