2
0
mirror of synced 2025-02-25 01:18:23 +00:00
blog/themes/embark/layout/blog-post.swig
Jakub Sokołowski c7acd418c2
first commit
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2020-06-18 12:29:57 +02:00

22 lines
505 B
Plaintext

{{
partial('partial/header-blog', {
title: page.title,
tagline: page.tagline,
author: site.data.authors[page.author],
articleDate: page.date
})
}}
<main role="main" class="o-standard-page">
<section class="o-container-medium o-distance">
{{page.content}}
</section>
{% if page.next !== null || page.prev !== null %}
<div class="o-container-medium o-distance">
{{ partial('partial/paginator', { next: page.next, prev: page.prev }) }}
</div>
{% endif %}
</main>