1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 10:08:50 +02:00
blog/_src/_layouts/post.html

29 lines
607 B
HTML
Raw Normal View History

2013-11-18 01:08:13 +01:00
---
layout: base
2013-11-18 01:08:13 +01:00
---
2015-08-09 21:50:06 +02:00
<section role="main" id="main" class="page-single grid">
2015-08-09 21:50:06 +02:00
<article class="hentry format-post col6">
2015-08-09 18:15:40 +02:00
<header>
<h1 class="entry-title">{{ page.title | titlecase }}</h1>
</header>
2013-11-23 21:53:52 +01:00
<section class="entry-content">
{% if page.image %}
2015-09-26 22:47:34 +02:00
<figure class="hentry__teaser">
{% picture {{ page.image }} %}
</figure>
2013-11-23 21:53:52 +01:00
{% endif %}
{{ content }}
2013-11-23 21:53:52 +01:00
</section>
{% include entry_meta.html %}
{% include relatedposts.html %}
2013-11-23 21:53:52 +01:00
</article>
2015-08-09 18:15:40 +02:00
</section>