Add little sidebar footer links
This commit is contained in:
parent
86825f1c09
commit
ca02716023
|
@ -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 -->
|
||||
|
|
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue