diff --git a/_includes/post-single.html b/_includes/archive-list-single.html
similarity index 100%
rename from _includes/post-single.html
rename to _includes/archive-list-single.html
diff --git a/_pages/category-archive.html b/_pages/category-archive.html
index 9babd6d9..62962857 100644
--- a/_pages/category-archive.html
+++ b/_pages/category-archive.html
@@ -10,6 +10,6 @@ title: "Posts by Category"
{% assign posts = group_items[forloop.index0] %}
{{ category }}
{% for post in posts %}
- {% include post-single.html %}
+ {% include archive-list-single.html %}
{% endfor %}
{% endfor %}
\ No newline at end of file
diff --git a/_pages/collection-archive.html b/_pages/collection-archive.html
index e52157fd..8cb1d535 100644
--- a/_pages/collection-archive.html
+++ b/_pages/collection-archive.html
@@ -16,7 +16,7 @@ permalink: /collection-archive/
{% endunless %}
{% for post in collection.docs %}
{% unless collection.output == false or collection.label == 'posts' %}
- {% include post-single.html %}
+ {% include archive-list-single.html %}
{% endunless %}
{% endfor %}
{% endfor %}
\ No newline at end of file
diff --git a/_pages/page-archive.html b/_pages/page-archive.html
index f69acdad..6a4b58ed 100644
--- a/_pages/page-archive.html
+++ b/_pages/page-archive.html
@@ -5,5 +5,5 @@ permalink: /page-archive/
---
{% include absolute-url.liquid %}
{% for post in site.pages %}
- {% include post-single.html %}
+ {% include archive-list-single.html %}
{% endfor %}
\ No newline at end of file
diff --git a/_pages/recipes-archive.html b/_pages/recipes-archive.html
index 27643711..eabf6c21 100644
--- a/_pages/recipes-archive.html
+++ b/_pages/recipes-archive.html
@@ -10,6 +10,6 @@ permalink: /recipes/
{% assign posts = group_items[forloop.index0] %}
{{ category }}
{% for post in posts %}
- {% include post-single.html %}
+ {% include archive-list-single.html %}
{% endfor %}
{% endfor %}
\ No newline at end of file
diff --git a/_pages/sitemap.md b/_pages/sitemap.md
index a5ffda12..4d630e03 100644
--- a/_pages/sitemap.md
+++ b/_pages/sitemap.md
@@ -9,12 +9,12 @@ A list of all the posts and pages found on the site. For you robots out there is
Pages
{% for post in site.pages %}
- {% include post-single.html %}
+ {% include archive-list-single.html %}
{% endfor %}
Posts
{% for post in site.posts %}
- {% include post-single.html %}
+ {% include archive-list-single.html %}
{% endfor %}
{% capture written_label %}'None'{% endcapture %}
@@ -29,7 +29,7 @@ A list of all the posts and pages found on the site. For you robots out there is
{% endunless %}
{% for post in collection.docs %}
{% unless collection.output == false or collection.label == 'posts' %}
- {% include post-single.html %}
+ {% include archive-list-single.html %}
{% endunless %}
{% endfor %}
{% endfor %}
\ No newline at end of file
diff --git a/_pages/tag-archive.html b/_pages/tag-archive.html
index c10941e5..11cb0328 100644
--- a/_pages/tag-archive.html
+++ b/_pages/tag-archive.html
@@ -10,6 +10,6 @@ title: "Posts by Tags"
{% assign posts = group_items[forloop.index0] %}
{{ tag }}
{% for post in posts %}
- {% include post-single.html %}
+ {% include archive-list-single.html %}
{% endfor %}
{% endfor %}
\ No newline at end of file
diff --git a/_pages/year-archive.html b/_pages/year-archive.html
index 984b6ff9..dcf51567 100644
--- a/_pages/year-archive.html
+++ b/_pages/year-archive.html
@@ -11,5 +11,5 @@ title: "Posts by Year"
{{ year }}
{% capture written_year %}{{ year }}{% endcapture %}
{% endif %}
- {% include post-single.html %}
+ {% include archive-list-single.html %}
{% endfor %}
\ No newline at end of file