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

29 lines
607 B
HTML

---
layout: base
---
<section role="main" id="main" class="page-single grid">
<article class="hentry format-post col6">
<header>
<h1 class="entry-title">{{ page.title | titlecase }}</h1>
</header>
<section class="entry-content">
{% if page.image %}
<figure class="hentry__teaser">
{% picture {{ page.image }} %}
</figure>
{% endif %}
{{ content }}
</section>
{% include entry_meta.html %}
{% include relatedposts.html %}
</article>
</section>