Files
fnx_web/res/template/fragments/menu.html

20 lines
635 B
HTML
Raw Normal View History

2017-11-10 12:39:55 +01:00
{{define "menu"}}
<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&nbsp;Files</a>
2017-11-10 12:39:55 +01:00
<a href="/api">API&nbsp;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()">&#9776;</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>
{{end}}