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

34 lines
764 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">
{% include picture.html %}
</figure>
{% endif %}
{{ content | remove: page.excerpt }}
</section>
{% include actions.html %}
{% include entry_meta.html %}
{% include relatedposts.html %}
</article>
</section>