2017-11-10 12:39:55 +01:00
|
|
|
{{define "menu"}}
|
2018-06-20 23:47:47 +02:00
|
|
|
<div id="navigation" class="highlight_light border_top border_bottom navigation">
|
2018-01-07 23:05:51 +01:00
|
|
|
<a href="/">Home</a>
|
|
|
|
<a href="/history">My Files</a>
|
2017-11-10 12:39:55 +01:00
|
|
|
<a href="/api">API Documentation</a>
|
2018-06-21 23:41:50 +02:00
|
|
|
<a href="/user">{{if .Authenticated}}{{.Username}}{{else}}Account{{end}}</a>
|
2018-01-07 23:05:51 +01:00
|
|
|
<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>
|
2017-11-10 12:39:55 +01:00
|
|
|
</div>
|
2018-06-20 23:47:47 +02:00
|
|
|
{{end}}
|