1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-11 23:55:16 +01:00
blog/_src/_layouts/post.html

34 lines
768 B
HTML

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