Skip to content

Commit

Permalink
Merge pull request #353 from photogabble/feature/348-add-taxonomy-pag…
Browse files Browse the repository at this point in the history
…es-for-growth-stages

Add growth stage taxonomy pages
  • Loading branch information
carbontwelve authored Oct 2, 2024
2 parents 7fa1880 + e8ff70e commit 7d58415
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 4 deletions.
10 changes: 10 additions & 0 deletions src/content/taxonomy/stage/budding.md
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...
10 changes: 10 additions & 0 deletions src/content/taxonomy/stage/evergreen.md
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...
10 changes: 10 additions & 0 deletions src/content/taxonomy/stage/seedling.md
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...
23 changes: 23 additions & 0 deletions src/content/taxonomy/stage/stage.11tydata.js
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}/`;
},
},
}
6 changes: 2 additions & 4 deletions src/stubs.md → src/content/taxonomy/stage/stub.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@
title: Stub Posts
sub_title: Like drafts, but public
layout: layouts/page-post.njk
sidebar_component: topic
sidebar_title: Works in Progress
sidebar_topic: 'stage/stub'
hide_meta: true
tags:
- 'type/index'
folder:
- writing
- {title: 'stubs'}
eleventyComputed:
permalink: /stubs/
---
Stubs are the precursor to future content often times little more than a collection of ideas and therefore hidden by default from the rest of this digital garden. Most have been created in order to allow interlinking from other pages via backlinks.

Expand Down

0 comments on commit 7d58415

Please sign in to comment.