2016-11-23 02:29:35 +01:00
|
|
|
---
|
|
|
|
layout: archive
|
|
|
|
---
|
|
|
|
|
2023-09-29 04:03:51 +02:00
|
|
|
{{ content }}
|
|
|
|
|
2016-11-23 02:29:35 +01:00
|
|
|
<h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h3>
|
|
|
|
|
2023-09-29 04:03:51 +02:00
|
|
|
{% if paginator %}
|
|
|
|
{% assign posts = paginator.posts %}
|
|
|
|
{% else %}
|
|
|
|
{% assign posts = site.posts %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% assign entries_layout = page.entries_layout | default: 'list' %}
|
|
|
|
<div class="entries-{{ entries_layout }}">
|
|
|
|
{% for post in posts %}
|
|
|
|
{% include archive-single.html type=entries_layout %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2016-11-23 02:29:35 +01:00
|
|
|
|
|
|
|
{% include paginator.html %}
|