rolandjesse.de/_layouts/post.html
2016-03-05 17:21:36 +01:00

54 lines
1.3 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">
{% include swipe-instructions.html %}
<h1><strong>{{ page.title }}</strong></h1>
<h4>
<strong>{{ page.date | date_to_string }}</strong>
<small>
. category:
<a class="category" href="{{site.baseurl}}/categories/{{page.category | downcase}}.html">
{{ page.category }}
</a>.
<a href="{{site.baseurl}}{{page.url }}#disqus_thread">Comments</a>
<br />
{% for tag in page.tags %}
<a class="tag" 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 %}
</div>
</div>
</section>
{% include footer.html %}
{% include js.html %}
</body>
</html>
<!-- Post Layout End -->