rolandjesse.de/_layouts/post.html
Jorge Arias ec626ca9d9 Added responsive definition to images
* .content-section img definition in grayscale.scss
* Remove unecesary duplicated id="{{ page.title }}" definition in posts.html and blog.html
2015-11-11 21:18:06 -03:00

51 lines
1.2 KiB
HTML

<!-- Post Layout Start -->
<!DOCTYPE html>
<html lang="{{ site.lang }}">
{% include head.html %}
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
{% include navigation.html %}
<section id="{{ page.title }}" class="container content-section text-center">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<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 %}
{% include comments.html %}
</div>
</div>
</section>
<section class="container content-section text-center">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
{% include social-buttons.html %}
</div>
</div>
</section>
{% include footer.html %}
{% include js.html %}
</body>
</html>
<!-- Post Layout End -->