mirror of
https://github.com/ZizzyDizzyMC/linx-server.git
synced 2026-01-23 02:14:33 +00:00
Remove non-API navigation links when using auth
This commit is contained in:
parent
be15ba076d
commit
6987edc0d8
2 changed files with 3 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue