-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #353 from photogabble/feature/348-add-taxonomy-pag…
…es-for-growth-stages Add growth stage taxonomy pages
- Loading branch information
Showing
5 changed files
with
55 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: Budding | ||
sidebar_title: May still need refinement | ||
sidebar_topic: 'stage/budding' | ||
folder: | ||
- writing | ||
- {title: 'budding'} | ||
--- | ||
|
||
TODO... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: Evergreen | ||
sidebar_title: Invested Ideas | ||
sidebar_topic: 'stage/evergreen' | ||
folder: | ||
- writing | ||
- {title: 'evergreen'} | ||
--- | ||
|
||
TODO... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: Seedlings | ||
sidebar_title: Rough and early ideas | ||
sidebar_topic: 'stage/seedling' | ||
folder: | ||
- writing | ||
- {title: 'seedling'} | ||
--- | ||
|
||
TODO... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/** | ||
* Content Stages | ||
* | ||
*/ | ||
export default { | ||
// Do not include in RSS Feed | ||
excludeFromFeed: true, | ||
|
||
// Tagged as special topic type, these aren't regular pages | ||
tags: ['type/stage'], | ||
|
||
// Do not display page meta data | ||
hide_meta: true, | ||
folder: ['series'], | ||
|
||
sidebar_component: 'topic', | ||
|
||
eleventyComputed: { | ||
permalink(data) { | ||
return `stage/${data.page.fileSlug}/`; | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters