From 790b8b76aee2c0b5692f8c5d991e72b22b199e14 Mon Sep 17 00:00:00 2001 From: Lilac Date: Sat, 11 Jul 2026 16:10:29 -0400 Subject: [PATCH] move sites for subdomains --- content/{ => home}/_index.md | 0 hugo.yaml | 23 ++++++++++++++++------- 2 files changed, 16 insertions(+), 7 deletions(-) rename content/{ => home}/_index.md (100%) diff --git a/content/_index.md b/content/home/_index.md similarity index 100% rename from content/_index.md rename to content/home/_index.md diff --git a/hugo.yaml b/hugo.yaml index 60897dc..8ae21a9 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -1,12 +1,21 @@ -title: 'grasswren.net' baseURL: 'https://grasswren.net' -uglyURLs: true -disableKinds: - - RSS - - sitemap - - taxonomy - - term +languages: + home: + title: 'grasswren.net' + baseURL: 'https://grasswren.net' + contentDir: 'content/home' + disableKinds: [ 'RSS', 'sitemap', 'taxonomy', 'term' ] + blog: + title: 'blog.grasswren.net' + baseURL: 'https://blog.grasswren.net/' + contentDir: 'content/blog' + disableKinds: [ 'RSS', 'sitemap', 'taxonomy', 'term' ] + birds: + title: 'birds.grasswren.net' + baseURL: 'https://birds.grasswren.net/' + contentDIR: 'content/birds' + disableKinds: [ 'RSS', 'sitemap', 'taxonomy', 'term' ] markup: { goldmark: { parser: { wrapStandAloneImageWithinParagraph: false } } } minify: { minifyOutput: true }