- Add final part of LocallyGrown.net series: "From Survival to Sustainability" - Implement Hugo series taxonomy for better content organization - Add series navigation partial showing all 6 parts with prev/next links - Update all LocallyGrown posts with series metadata and ordering - Display series indicators on index page for connected content - Style series navigation with responsive design and dark mode support - Fix series links across all posts to use correct slugs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
109 lines
2.7 KiB
TOML
109 lines
2.7 KiB
TOML
baseURL = 'https://blog.kestrelsnest.social'
|
|
languageCode = 'en-us'
|
|
title = "Kestrel's Nest"
|
|
theme = "m10c"
|
|
|
|
[taxonomies]
|
|
tag = "tags"
|
|
category = "categories"
|
|
series = "series"
|
|
[params]
|
|
author = "Eric Wagoner"
|
|
avatar = "face.jpg"
|
|
description = "Links, thoughts, & what-not from Athens, GA."
|
|
favicon = "favicon.ico"
|
|
images = ["/default-og.png"]
|
|
[[params.social]]
|
|
icon = "home"
|
|
name = "Home"
|
|
url = "https://ericwagoner.com"
|
|
[[params.social]]
|
|
icon = "tv"
|
|
name = "My Cooking Show"
|
|
url = "https://www.youtube.com/@RandomRecipeProject"
|
|
[[params.social]]
|
|
icon = "brand-mastodon"
|
|
name = "Mastodon"
|
|
url = "https://toots.kestrelsnest.social/@eric"
|
|
[[params.social]]
|
|
icon = "brand-bluesky"
|
|
name = "BlueSky"
|
|
url = "https://bsky.app/profile/ewagoner.bsky.social"
|
|
[[params.social]]
|
|
icon = "camera"
|
|
name = "Pixelfed"
|
|
url = "https://pix.kestrelsnest.social/@eric"
|
|
[[params.social]]
|
|
icon = "book-open"
|
|
name = "Book Reviews"
|
|
url = "https://books.kestrelsnest.social/user/eric"
|
|
[[params.social]]
|
|
icon = "headphones"
|
|
name = "My Podcasts"
|
|
url = "https://podcasts.kestrelsnest.social"
|
|
[[params.social]]
|
|
icon = "brand-youtube"
|
|
name = "Personal YouTube"
|
|
url = "https://youtube.com/ewagoner"
|
|
[[params.social]]
|
|
icon = "brand-linkedin"
|
|
name = "LinkedIn"
|
|
url = "https://www.linkedin.com/in/wagonereric/"
|
|
[[params.social]]
|
|
icon = "brand-github"
|
|
name = "Github"
|
|
url = "https://github.com/ewagoner"
|
|
[[params.social]]
|
|
icon = "brand-gitea"
|
|
name = "Gitea"
|
|
url = "https://git.kestrelsnest.social/eric"
|
|
[[params.social]]
|
|
icon = "brand-facebook"
|
|
name = "Facebook"
|
|
url = "https://facebook.com/ewagoner"
|
|
[[params.social]]
|
|
icon = "mail"
|
|
name = "Email"
|
|
url = "mailto:eric@ericwagoner.com?subject=Blog"
|
|
|
|
[menu]
|
|
[[menu.main]]
|
|
identifier = "home"
|
|
name = "Home"
|
|
url = "/"
|
|
weight = 1
|
|
[[menu.main]]
|
|
identifier = "tags"
|
|
name = "Tags"
|
|
url = "/tags/"
|
|
weight = 2
|
|
[[menu.main]]
|
|
identifier = "search"
|
|
name = "Search"
|
|
url = "/search/"
|
|
weight = 3
|
|
[[menu.secondary]]
|
|
identifier = "then"
|
|
name = "Past"
|
|
url = "/then/"
|
|
weight = 1
|
|
[[menu.secondary]]
|
|
identifier = "now"
|
|
name = "Now"
|
|
url = "/now/"
|
|
weight = 2
|
|
[[menu.secondary]]
|
|
identifier = "upcoming"
|
|
name = "Future"
|
|
url = "/upcoming/"
|
|
weight = 3
|
|
[[menu.tertiary]]
|
|
identifier = "mytweets"
|
|
name = "Local Tweet Archive"
|
|
url = "/mytweets/"
|
|
weight = 3
|
|
[[menu.featured]]
|
|
identifier = "randomrecipeproject"
|
|
name = "Random Recipe Project (cooking videos)"
|
|
url = "https://www.youtube.com/@RandomRecipeProject"
|
|
weight = 1 |