~xdavidwu/xdavidwu.link

178f414a9270d335e6b92d18c34c8d7625d1d9f0 — Michael Rose 8 years ago 427ed39
Rename include to archive-list-single.html
8 files changed, 9 insertions(+), 9 deletions(-)

R _includes/{post-single.html => archive-list-single.html}
M _pages/category-archive.html
M _pages/collection-archive.html
M _pages/page-archive.html
M _pages/recipes-archive.html
M _pages/sitemap.md
M _pages/tag-archive.html
M _pages/year-archive.html
R _includes/post-single.html => _includes/archive-list-single.html +0 -0
M _pages/category-archive.html => _pages/category-archive.html +1 -1
@@ 10,6 10,6 @@ title: "Posts by Category"
  {% assign posts = group_items[forloop.index0] %}
  <h3>{{ category }}</h3>
  {% for post in posts %}
    {% include post-single.html %}
    {% include archive-list-single.html %}
  {% endfor %}
{% endfor %}
\ No newline at end of file

M _pages/collection-archive.html => _pages/collection-archive.html +1 -1
@@ 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

M _pages/page-archive.html => _pages/page-archive.html +1 -1
@@ 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

M _pages/recipes-archive.html => _pages/recipes-archive.html +1 -1
@@ 10,6 10,6 @@ permalink: /recipes/
  {% assign posts = group_items[forloop.index0] %}
  <h3>{{ category }}</h3>
  {% for post in posts %}
    {% include post-single.html %}
    {% include archive-list-single.html %}
  {% endfor %}
{% endfor %}
\ No newline at end of file

M _pages/sitemap.md => _pages/sitemap.md +3 -3
@@ 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>
{% for post in site.pages %}
  {% include post-single.html %}
  {% include archive-list-single.html %}
{% endfor %}

<h3>Posts</h3>
{% 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

M _pages/tag-archive.html => _pages/tag-archive.html +1 -1
@@ 10,6 10,6 @@ title: "Posts by Tags"
  {% assign posts = group_items[forloop.index0] %}
  <h3>{{ tag }}</h3>
  {% for post in posts %}
    {% include post-single.html %}
    {% include archive-list-single.html %}
  {% endfor %}
{% endfor %}
\ No newline at end of file

M _pages/year-archive.html => _pages/year-archive.html +1 -1
@@ 11,5 11,5 @@ title: "Posts by Year"
    <h3>{{ year }}</h3>
    {% capture written_year %}{{ year }}{% endcapture %}
  {% endif %}
  {% include post-single.html %}
  {% include archive-list-single.html %}
{% endfor %}
\ No newline at end of file