Add little sidebar footer links
This commit is contained in:
parent
86825f1c09
commit
ca02716023
|
@ -117,6 +117,9 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
<div class="f7 tc link--normal">
|
||||||
|
<a href="{{ .ManifestoUrl }}">Manifesto</a> - <a href="{{ .AboutUrl }}">Our Team</a> - TODO: HISTORY
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Feed -->
|
<!-- Feed -->
|
||||||
|
|
|
@ -30,6 +30,7 @@ func Index(c *RequestContext) ResponseData {
|
||||||
Following []templates.Follow
|
Following []templates.Follow
|
||||||
|
|
||||||
ManifestoUrl string
|
ManifestoUrl string
|
||||||
|
AboutUrl string
|
||||||
PodcastUrl string
|
PodcastUrl string
|
||||||
AtomFeedUrl string
|
AtomFeedUrl string
|
||||||
MarkAllReadUrl string
|
MarkAllReadUrl string
|
||||||
|
@ -126,6 +127,7 @@ func Index(c *RequestContext) ResponseData {
|
||||||
Following: follows,
|
Following: follows,
|
||||||
|
|
||||||
ManifestoUrl: hmnurl.BuildManifesto(),
|
ManifestoUrl: hmnurl.BuildManifesto(),
|
||||||
|
AboutUrl: hmnurl.BuildAbout(),
|
||||||
PodcastUrl: hmnurl.BuildPodcast(),
|
PodcastUrl: hmnurl.BuildPodcast(),
|
||||||
AtomFeedUrl: hmnurl.BuildAtomFeed(),
|
AtomFeedUrl: hmnurl.BuildAtomFeed(),
|
||||||
MarkAllReadUrl: hmnurl.HMNProjectContext.BuildForumMarkRead(0),
|
MarkAllReadUrl: hmnurl.HMNProjectContext.BuildForumMarkRead(0),
|
||||||
|
|
Loading…
Reference in New Issue