blog/themes/embark/layout/archive.swig

52 lines
1.3 KiB
Plaintext
Raw Normal View History

{% if is_category() %}
{{
partial('partial/header', {
title: 'Categories: ' +site.data.categories[page.category],
tagline: ' ',
compact: true,
link: {
text: '← Back to blog',
href: '/news'
},
})
}}
{% else %}
{{
partial('partial/header', {
title: __('archives.header.title'),
tagline: ' ',
compact: true,
link: {
text: __('archives.header.link'),
href: '/news'
},
})
}}
{% endif %}
<main role="main">
<section class="o-container o-distance-m">
{% for post in page.posts %}
{{
partial('partial/whisperbox', {
className: 'o-distance-m',
title: post.title,
image: post.image,
linkClassName: 'u-link-uniform',
titleClassName: 'c-title-level-3',
linkTitle: true,
text: post.summary,
dateInfo: post.date,
link: {
text: __('archives.article_box.read_more_link'),
href: url_for(post.path)
}
})
}}
{% endfor %}
</section>
<div class="o-container o-distance o-center">
<a href="/news" class="c-button" title="{{__('archives.back_to_blog_link.title')}}">{{__('archives.back_to_blog_link.label')}}</a>
</div>
</main>