Add little sidebar footer links

This commit is contained in:
Ben Visness 2024-06-21 20:16:32 -05:00
parent 86825f1c09
commit ca02716023
2 changed files with 5 additions and 0 deletions

View File

@ -117,6 +117,9 @@
</div>
</div>
{{ end }}
<div class="f7 tc link--normal">
<a href="{{ .ManifestoUrl }}">Manifesto</a> - <a href="{{ .AboutUrl }}">Our Team</a> - TODO: HISTORY
</div>
</div>
<!-- Feed -->

View File

@ -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),