summaryrefslogtreecommitdiffstats
path: root/web/templates/footer.html
diff options
context:
space:
mode:
Diffstat (limited to 'web/templates/footer.html')
-rw-r--r--web/templates/footer.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/web/templates/footer.html b/web/templates/footer.html
index 204a89f03..4b15295b4 100644
--- a/web/templates/footer.html
+++ b/web/templates/footer.html
@@ -1,7 +1,7 @@
{{define "footer"}}
<div class="footer-pane col-xs-12">
<div class="col-xs-12">
- <span class="pull-right footer-site-name">{{ .SiteName }}</span>
+ <span class="pull-right footer-site-name">{{ .ClientProps.SiteName }}</span>
</div>
<div class="col-xs-12">
<span class="pull-right footer-link copyright">© 2015 SpinPunch</span>
@@ -12,9 +12,9 @@
</div>
</div>
<script>
- document.getElementById("help_link").setAttribute("href", config.HelpLink);
- document.getElementById("terms_link").setAttribute("href", config.TermsLink);
- document.getElementById("privacy_link").setAttribute("href", config.PrivacyLink);
- document.getElementById("about_link").setAttribute("href", config.AboutLink);
+ document.getElementById("help_link").setAttribute("href", '/static/help/help.html');
+ document.getElementById("terms_link").setAttribute("href", '/static/help/terms.html');
+ document.getElementById("privacy_link").setAttribute("href", '/static/help/privacy.html');
+ document.getElementById("about_link").setAttribute("href", '/static/help/about.html');
</script>
{{end}}