From ca0271602392184457bd8ae45ea7485033926339 Mon Sep 17 00:00:00 2001 From: Ben Visness Date: Fri, 21 Jun 2024 20:16:32 -0500 Subject: [PATCH] Add little sidebar footer links --- src/templates/src/landing.html | 3 +++ src/website/landing.go | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/templates/src/landing.html b/src/templates/src/landing.html index 0bb82ff1..676002bf 100644 --- a/src/templates/src/landing.html +++ b/src/templates/src/landing.html @@ -117,6 +117,9 @@ {{ end }} + diff --git a/src/website/landing.go b/src/website/landing.go index 246c36cf..29c567cf 100644 --- a/src/website/landing.go +++ b/src/website/landing.go @@ -30,6 +30,7 @@ func Index(c *RequestContext) ResponseData { Following []templates.Follow ManifestoUrl string + AboutUrl string PodcastUrl string AtomFeedUrl string MarkAllReadUrl string @@ -126,6 +127,7 @@ func Index(c *RequestContext) ResponseData { Following: follows, ManifestoUrl: hmnurl.BuildManifesto(), + AboutUrl: hmnurl.BuildAbout(), PodcastUrl: hmnurl.BuildPodcast(), AtomFeedUrl: hmnurl.BuildAtomFeed(), MarkAllReadUrl: hmnurl.HMNProjectContext.BuildForumMarkRead(0),