rolandjesse.de/_layouts/post.html
2015-11-22 23:17:40 +01:00

49 lines
1.1 KiB
HTML

<!-- Post Layout Start -->
<!DOCTYPE html>
<html lang="{{ site.lang }}">
{% include head.html %}
<body>
{% include navigation.html %}
<section id="post" class="container content-section text-center">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-xs-10 col-xs-offset-1">
{% include swipe-instructions.html %}
<h1><strong>{{ page.title }}</strong></h1>
<h4><strong>{{ page.date | date_to_string }}</strong>
<small> . {{ page.category }} . <a href="{{site.baseurl}}{{page.url }}#disqus_thread">Comments</a>
{% for tag in page.tags %}
<a href="{{site.baseurl}}/tags/{{tag}}.html">#{{ tag }}</a>
{% endfor %}
</small>
</h4>
{{ page.content | markdownify }}
{% include share.html %}
{% if jekyll.environment == "production" %}
{% include comments.html %}
{% endif %}
{% include social-buttons.html %}
</div>
</div>
</section>
{% include footer.html %}
{% include js.html %}
</body>
</html>
<!-- Post Layout End -->