Disable author profile on archive pages
This commit is contained in:
parent
cf2fbef815
commit
8e125b7617
6 changed files with 7 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
layout: archive
|
||||
permalink: /category-archive/
|
||||
title: "Posts by Category"
|
||||
author_profile: false
|
||||
---
|
||||
{% include absolute-url.liquid %}
|
||||
{% include group-by-array.html collection=site.posts field='categories' %}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
layout: archive
|
||||
title: "Posts by Collection"
|
||||
permalink: /collection-archive/
|
||||
author_profile: false
|
||||
---
|
||||
{% include absolute-url.liquid %}
|
||||
{% capture written_label %}'None'{% endcapture %}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
layout: archive
|
||||
title: "Page Archive"
|
||||
permalink: /page-archive/
|
||||
author_profile: false
|
||||
---
|
||||
{% include absolute-url.liquid %}
|
||||
{% for post in site.pages %}
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
---
|
||||
layout: archive
|
||||
title: "Recipes Archive"
|
||||
title: "Recipes"
|
||||
permalink: /recipes/
|
||||
author_profile: false
|
||||
---
|
||||
{% include absolute-url.liquid %}
|
||||
{% include group-by-array.html collection=site.recipes field='categories' %}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
layout: archive
|
||||
title: "Sitemap"
|
||||
permalink: /sitemap/
|
||||
author_profile: false
|
||||
---
|
||||
{% include absolute-url.liquid %}
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
layout: archive
|
||||
permalink: /year-archive/
|
||||
title: "Posts by Year"
|
||||
author_profile: false
|
||||
---
|
||||
{% include absolute-url.liquid %}
|
||||
{% capture written_year %}'None'{% endcapture %}
|
||||
|
|
Loading…
Reference in a new issue