---
layout: archive
paginator:
data: collections.posts
size: 2
---
{{ ui-text[site.locale].recent_posts | default: "Recent Posts" }}
{% if paginator %}
{% assign posts = collections.posts %}
{% else %}
{% assign posts = site.posts %}
{% endif %}
{% assign entries_layout = page.entries_layout | default: 'list' %}
{% for post in posts %}
{% include archive-single.html type=entries_layout aPost=post %}
{% endfor %}
{% include paginator.html %}