Remove non-API navigation links when using auth

This commit is contained in:
andreimarcu 2015-10-14 15:20:41 -04:00
parent be15ba076d
commit 6987edc0d8
2 changed files with 3 additions and 0 deletions

View File

@ -98,6 +98,7 @@ func setup() *web.Mux {
TemplateSet := pongo2.NewSet("templates", p2l)
TemplateSet.Globals["sitename"] = Config.siteName
TemplateSet.Globals["siteurl"] = Config.siteURL
TemplateSet.Globals["using_auth"] = Config.authFile != ""
err = populateTemplatesMap(TemplateSet, Templates)
if err != nil {
log.Fatal("Error: could not load templates", err)

View File

@ -13,8 +13,10 @@
<div id="container">
<div id="header">
<div id="navigation" class="right">
{% if !using_auth %}
<a href="/">Upload</a> |
<a href="/paste/">Paste</a> |
{% endif %}
<a href="/API/">API</a>
</div>
<h2><a href="/" title="{{ sitename }}">{{ sitename }}</a></h2>