Rename include to archive-list-single.html

This commit is contained in:
Michael Rose 2016-03-06 21:01:09 -05:00
parent 427ed394ad
commit 178f414a92
8 changed files with 9 additions and 9 deletions

View file

@ -10,6 +10,6 @@ title: "Posts by Category"
{% assign posts = group_items[forloop.index0] %} {% assign posts = group_items[forloop.index0] %}
<h3>{{ category }}</h3> <h3>{{ category }}</h3>
{% for post in posts %} {% for post in posts %}
{% include post-single.html %} {% include archive-list-single.html %}
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}

View file

@ -16,7 +16,7 @@ permalink: /collection-archive/
{% endunless %} {% endunless %}
{% for post in collection.docs %} {% for post in collection.docs %}
{% unless collection.output == false or collection.label == 'posts' %} {% unless collection.output == false or collection.label == 'posts' %}
{% include post-single.html %} {% include archive-list-single.html %}
{% endunless %} {% endunless %}
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}

View file

@ -5,5 +5,5 @@ permalink: /page-archive/
--- ---
{% include absolute-url.liquid %} {% include absolute-url.liquid %}
{% for post in site.pages %} {% for post in site.pages %}
{% include post-single.html %} {% include archive-list-single.html %}
{% endfor %} {% endfor %}

View file

@ -10,6 +10,6 @@ permalink: /recipes/
{% assign posts = group_items[forloop.index0] %} {% assign posts = group_items[forloop.index0] %}
<h3>{{ category }}</h3> <h3>{{ category }}</h3>
{% for post in posts %} {% for post in posts %}
{% include post-single.html %} {% include archive-list-single.html %}
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}

View file

@ -9,12 +9,12 @@ A list of all the posts and pages found on the site. For you robots out there is
<h3>Pages</h3> <h3>Pages</h3>
{% for post in site.pages %} {% for post in site.pages %}
{% include post-single.html %} {% include archive-list-single.html %}
{% endfor %} {% endfor %}
<h3>Posts</h3> <h3>Posts</h3>
{% for post in site.posts %} {% for post in site.posts %}
{% include post-single.html %} {% include archive-list-single.html %}
{% endfor %} {% endfor %}
{% capture written_label %}'None'{% endcapture %} {% 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 %} {% endunless %}
{% for post in collection.docs %} {% for post in collection.docs %}
{% unless collection.output == false or collection.label == 'posts' %} {% unless collection.output == false or collection.label == 'posts' %}
{% include post-single.html %} {% include archive-list-single.html %}
{% endunless %} {% endunless %}
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}

View file

@ -10,6 +10,6 @@ title: "Posts by Tags"
{% assign posts = group_items[forloop.index0] %} {% assign posts = group_items[forloop.index0] %}
<h3>{{ tag }}</h3> <h3>{{ tag }}</h3>
{% for post in posts %} {% for post in posts %}
{% include post-single.html %} {% include archive-list-single.html %}
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}

View file

@ -11,5 +11,5 @@ title: "Posts by Year"
<h3>{{ year }}</h3> <h3>{{ year }}</h3>
{% capture written_year %}{{ year }}{% endcapture %} {% capture written_year %}{{ year }}{% endcapture %}
{% endif %} {% endif %}
{% include post-single.html %} {% include archive-list-single.html %}
{% endfor %} {% endfor %}