From d84f35c0e17754014e7f4652353552f1b75cc7c6 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Wed, 9 Mar 2016 22:18:10 -0500 Subject: [PATCH] Correct headline hierarchy --- _layouts/archive.html | 2 +- _pages/category-archive.html | 2 +- _pages/collection-archive.html | 2 +- _pages/portfolio-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, 10 insertions(+), 10 deletions(-) diff --git a/_layouts/archive.html b/_layouts/archive.html index 411c7929..959cb6a4 100644 --- a/_layouts/archive.html +++ b/_layouts/archive.html @@ -3,6 +3,6 @@ layout: default ---
-

{{ page.title }}

+

{{ page.title }}

{{ content }}
\ No newline at end of file diff --git a/_pages/category-archive.html b/_pages/category-archive.html index 701ead44..b37173bc 100644 --- a/_pages/category-archive.html +++ b/_pages/category-archive.html @@ -10,7 +10,7 @@ author_profile: false {% for category in group_names %} {% assign posts = group_items[forloop.index0] %} -

{{ category }}

+

{{ category }}

{% for post in posts %} {% include archive-list-single %} {% endfor %} diff --git a/_pages/collection-archive.html b/_pages/collection-archive.html index 2c889ee2..dd75888e 100644 --- a/_pages/collection-archive.html +++ b/_pages/collection-archive.html @@ -12,7 +12,7 @@ author_profile: false {% unless collection.output == false or collection.label == 'posts' %} {% capture label %}{{ collection.label }}{% endcapture %} {% if label != written_label %} -

{{ label }}

+

{{ label }}

{% capture written_label %}{{ label }}{% endcapture %} {% endif %} {% endunless %} diff --git a/_pages/portfolio-archive.html b/_pages/portfolio-archive.html index 3536585c..fa16f487 100644 --- a/_pages/portfolio-archive.html +++ b/_pages/portfolio-archive.html @@ -9,7 +9,7 @@ permalink: /portfolio/ {% for category in group_names %} {% assign posts = group_items[forloop.index0] %} -

{{ category }}

+

{{ category }}

{% for post in posts %} {% include archive-list-single %} {% endfor %} diff --git a/_pages/recipes-archive.html b/_pages/recipes-archive.html index a80b81dc..dfb87498 100644 --- a/_pages/recipes-archive.html +++ b/_pages/recipes-archive.html @@ -10,7 +10,7 @@ author_profile: false {% for category in group_names %} {% assign posts = group_items[forloop.index0] %} -

{{ category }}

+

{{ category }}

{% for post in posts %} {% include archive-list-single %} {% endfor %} diff --git a/_pages/sitemap.md b/_pages/sitemap.md index 7fe18546..0acf49f3 100644 --- a/_pages/sitemap.md +++ b/_pages/sitemap.md @@ -9,12 +9,12 @@ author_profile: false A list of all the posts and pages found on the site. For you robots out there is an [XML version]({{ base_path }}/sitemap.xml) available for digesting as well. -

Pages

+

Pages

{% for post in site.pages %} {% include archive-list-single %} {% endfor %} -

Posts

+

Posts

{% for post in site.posts %} {% include archive-list-single %} {% endfor %} @@ -25,7 +25,7 @@ A list of all the posts and pages found on the site. For you robots out there is {% unless collection.output == false or collection.label == 'posts' %} {% capture label %}{{ collection.label }}{% endcapture %} {% if label != written_label %} -

{{ label }}

+

{{ label }}

{% capture written_label %}{{ label }}{% endcapture %} {% endif %} {% endunless %} diff --git a/_pages/tag-archive.html b/_pages/tag-archive.html index 577d856a..e338329d 100644 --- a/_pages/tag-archive.html +++ b/_pages/tag-archive.html @@ -10,7 +10,7 @@ author_profile: false {% for tag in group_names %} {% assign posts = group_items[forloop.index0] %} -

{{ tag }}

+

{{ tag }}

{% for post in posts %} {% include archive-list-single %} {% endfor %} diff --git a/_pages/year-archive.html b/_pages/year-archive.html index 4b601de5..333a5011 100644 --- a/_pages/year-archive.html +++ b/_pages/year-archive.html @@ -10,7 +10,7 @@ author_profile: false {% for post in site.posts %} {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %} {% if year != written_year %} -

{{ year }}

+

{{ year }}

{% capture written_year %}{{ year }}{% endcapture %} {% endif %} {% include archive-list-single %}