From 3d7ba0303552d189abe95c72eb1a95b33593e365 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Sat, 24 Feb 2024 23:16:14 -0800 Subject: [PATCH] get posts to load downgrade due to https://github.com/lukeorth/poison/issues/169 --- .envrc | 2 +- hugo.toml | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.envrc b/.envrc index c31ebb2..de1d75c 100644 --- a/.envrc +++ b/.envrc @@ -1,7 +1,7 @@ # Make `git subrepo` work. source .git-subrepo-subrepo/.rc -VERSION=0.123.3 +VERSION=0.122.0 URL="https://github.com/gohugoio/hugo/releases/download/v${VERSION}/hugo_${VERSION}_darwin-universal.tar.gz" DEST=".bin/hugo-${VERSION}" FILEPATH="${DEST}/hugo" diff --git a/hugo.toml b/hugo.toml index 284a445..97e1ce5 100644 --- a/hugo.toml +++ b/hugo.toml @@ -3,7 +3,8 @@ languageCode = 'en-us' title = 'David Glasser Votes' theme = 'poison' paginate = 10 -pluralizelisttitles = false # removes the automatically appended "s" on sidebar entries +# removes the automatically appended "s" on sidebar entries (from poison docs) +pluralizelisttitles = false [author] name = "David Glasser" @@ -17,3 +18,6 @@ rss_icon = true github_url = "https://github.com/glasser/vote.davidglasser.net" sidebar_bg_color = "#d28445" sidebar_p_color = "rgba(255,255,255,.5)" + +# The default these days is to call this "posts" but that would break all my old links +front_page_content = ["post"]