diff --git a/_layouts/categories.html b/_layouts/categories.html index ca3d7ec3..d5808287 100644 --- a/_layouts/categories.html +++ b/_layouts/categories.html @@ -38,7 +38,7 @@ layout: archive

{{ category[0] }}

{% for post in category.last %} - {% include archive-single.html %} + {% include archive-single.html type=page.entries_layout %} {% endfor %}
{{ site.data.text[site.locale].back_to_top | default: 'Back to Top' }} ↑ diff --git a/_layouts/category.html b/_layouts/category.html index 1644e3ce..79b81ce0 100644 --- a/_layouts/category.html +++ b/_layouts/category.html @@ -4,6 +4,6 @@ layout: archive {{ content }} -
- {% include posts-category.html taxonomy=page.taxonomy %} +
+ {% include posts-category.html taxonomy=page.taxonomy type=page.entries_layout %}
diff --git a/_layouts/collection.html b/_layouts/collection.html index 0c7ceb4c..3bcd916a 100644 --- a/_layouts/collection.html +++ b/_layouts/collection.html @@ -4,6 +4,6 @@ layout: archive {{ content }} -
- {% include documents-collection.html collection=page.collection sort_by=page.sort_by sort_order=page.sort_order %} +
+ {% include documents-collection.html collection=page.collection sort_by=page.sort_by sort_order=page.sort_order type=page.entries_layout %}
diff --git a/_layouts/posts.html b/_layouts/posts.html index a5947896..18006143 100644 --- a/_layouts/posts.html +++ b/_layouts/posts.html @@ -21,7 +21,7 @@ layout: archive

{{ year.name }}

{% for post in year.items %} - {% include archive-single.html %} + {% include archive-single.html type=page.entries_layout %} {% endfor %}
{{ site.data.text[site.locale].back_to_top | default: 'Back to Top' }} ↑ diff --git a/_layouts/tag.html b/_layouts/tag.html index 33971e04..5f83c2aa 100644 --- a/_layouts/tag.html +++ b/_layouts/tag.html @@ -5,5 +5,5 @@ layout: archive {{ content }}
- {% include posts-tag.html taxonomy=page.taxonomy %} + {% include posts-tag.html taxonomy=page.taxonomy type=page.entries_layout %}
diff --git a/_layouts/tags.html b/_layouts/tags.html index b5855439..da5888d3 100644 --- a/_layouts/tags.html +++ b/_layouts/tags.html @@ -38,7 +38,7 @@ layout: archive

{{ tag[0] }}

{% for post in tag.last %} - {% include archive-single.html %} + {% include archive-single.html type=page.entries_layout %} {% endfor %}
{{ site.data.text[site.locale].back_to_top | default: 'Back to Top' }} ↑