2015-03-02 21:06:05 +01:00
|
|
|
---
|
2016-03-28 05:13:45 +02:00
|
|
|
layout: base
|
2015-03-02 21:06:05 +01:00
|
|
|
---
|
|
|
|
|
2016-03-18 12:33:17 +01:00
|
|
|
{% include header.html type="post" %}
|
2015-03-02 21:06:05 +01:00
|
|
|
|
2016-03-18 12:33:17 +01:00
|
|
|
<div class="container">
|
2015-03-02 21:06:05 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
2016-03-18 12:33:17 +01:00
|
|
|
<article role="main" class="blog-post">
|
2016-03-28 05:13:45 +02:00
|
|
|
{{ content }}
|
|
|
|
</article>
|
|
|
|
|
2016-03-18 12:33:17 +01:00
|
|
|
<ul class="pager blog-pager">
|
|
|
|
{% if page.previous.url %}
|
2016-03-28 05:13:45 +02:00
|
|
|
<li class="previous">
|
|
|
|
<a href="{{ page.previous.url | prepend: site.baseurl | replace: '//', '/' }}" data-toggle="tooltip" data-placement="top" title="{{page.previous.title}}">← Previous Post</a>
|
|
|
|
</li>
|
2016-03-18 12:33:17 +01:00
|
|
|
{% endif %}
|
|
|
|
{% if page.next.url %}
|
2016-03-28 05:13:45 +02:00
|
|
|
<li class="next">
|
|
|
|
<a href="{{ page.next.url | prepend: site.baseurl | replace: '//', '/' }}" data-toggle="tooltip" data-placement="top" title="{{page.next.title}}">Next Post →</a>
|
|
|
|
</li>
|
2016-03-18 12:33:17 +01:00
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
|
2016-03-28 05:13:45 +02:00
|
|
|
{% if page.comments %}
|
2016-03-18 12:33:17 +01:00
|
|
|
<div class="disqus-comments">
|
2016-03-28 05:13:45 +02:00
|
|
|
{% include disqus.html %}
|
2016-03-18 12:33:17 +01:00
|
|
|
</div>
|
2016-03-28 05:13:45 +02:00
|
|
|
{% endif %}
|
2016-03-18 12:33:17 +01:00
|
|
|
</div>
|
2015-03-02 21:06:05 +01:00
|
|
|
</div>
|
2016-03-28 05:13:45 +02:00
|
|
|
</div>
|