23 lines
673 B
HTML
23 lines
673 B
HTML
{{define "menu"}}
|
|
<div id="navigation" class="highlight_light border_top border_bottom navigation">
|
|
<a href="/">Home</a>
|
|
<a href="/history">My Files</a>
|
|
<a href="/api">API</a>
|
|
{{if .Authenticated}}<a href="/user">{{.Username}}</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}}
|