rolandjesse.de/_layouts/blog.html
Panos Sakkos 91073a33fc Fixes #97
2015-11-21 02:26:08 +01:00

40 lines
1.1 KiB
HTML

<!-- Blog Layout Start -->
<!DOCTYPE html>
<html lang="{{ site.lang }}">
{% include head.html %}
<body>
{% include navigation.html %}
<section id="page" class="container content-section text-center">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
{{ page.content | markdownify }}
<div class="col-lg-10 col-lg-offset-2 col-md-10 col-md-offset-2">
{% for post in paginator.posts %}
<h4 align="left"><strong>{{ post.date | date_to_string }}</strong> <small>. {{ post.category }} .</small> <br class="visible-xs-block visible-sm-block"><a href="{{site.baseurl}}{{post.url}}"> <strong>{{ post.title }}</strong> </a> <br class="visible-xs-block visible-sm-block"><small><a href="{{site.baseurl}}{{post.url}}#disqus_thread">Comments</a></small></h4>
{% endfor %}
</div>
{% include pagination.html %}
{% include social-buttons.html %}
</div>
</div>
</section>
{% include footer.html %}
{% include js.html %}
</body>
</html>
<!-- Blog Layout End -->