25 lines
864 B
HTML
25 lines
864 B
HTML
{{define "menu"}}
|
|
<div id="navigation" class="highlight_headerbar navigation">
|
|
<a href="/">Home</a>
|
|
<a href="{{if .Authenticated}}/user/files{{else}}/history{{end}}">My Files</a>
|
|
{{if .Authenticated}}<a href="/user/lists">My Lists</a>{{end}}
|
|
<a href="/api">API</a>
|
|
{{if .Authenticated}}<a href="/user">{{.Username}}</a>
|
|
<a href="/logout" style="vertical-align: 0.6em; font-size: 0.9em; padding: 1px;">(Log out)</a>{{else}}
|
|
<a href="/login">Login</a>
|
|
<a href="/register">Register</a>
|
|
{{end}}
|
|
<a href="javascript:void(0);" class="icon" onclick="expandNavigation()">☰</a>
|
|
<script>
|
|
function expandNavigation() {
|
|
var x = document.getElementById("navigation");
|
|
if (!x.className.includes("responsive")) {
|
|
x.className += " responsive";
|
|
} else {
|
|
x.className = x.className.replace(" responsive", "");
|
|
}
|
|
}
|
|
</script>
|
|
</div>
|
|
{{end}}
|