Remove non-API navigation links when using auth
This commit is contained in:
parent
be15ba076d
commit
6987edc0d8
|
@ -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)
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue