Allow using theme without pagination (#2378)
This commit is contained in:
parent
1163ddc3f2
commit
3332196ec5
1 changed files with 7 additions and 1 deletions
|
@ -6,7 +6,13 @@ layout: archive
|
|||
|
||||
<h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h3>
|
||||
|
||||
{% for post in paginator.posts %}
|
||||
{% if site.paginate %}
|
||||
{% assign posts = paginator.posts %}
|
||||
{% else %}
|
||||
{% assign posts = site.posts %}
|
||||
{% endif %}
|
||||
|
||||
{% for post in posts %}
|
||||
{% include archive-single.html %}
|
||||
{% endfor %}
|
||||
|
||||
|
|
Loading…
Reference in a new issue