From 178f414a9270d335e6b92d18c34c8d7625d1d9f0 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Sun, 6 Mar 2016 21:01:09 -0500 Subject: [PATCH] Rename include to archive-list-single.html --- _includes/{post-single.html => archive-list-single.html} | 0 _pages/category-archive.html | 2 +- _pages/collection-archive.html | 2 +- _pages/page-archive.html | 2 +- _pages/recipes-archive.html | 2 +- _pages/sitemap.md | 6 +++--- _pages/tag-archive.html | 2 +- _pages/year-archive.html | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) rename _includes/{post-single.html => archive-list-single.html} (100%) 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 9babd6d..6296285 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 e52157f..8cb1d53 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 f69acda..6a4b58e 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 2764371..eabf6c2 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 a5ffda1..4d630e0 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 c10941e..11cb032 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 984b6ff..dcf5156 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 -- 2.43.0