This repository has been archived on 2025-11-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
lan-web/templates/_nav.html
2025-09-16 09:25:23 +02:00

24 lines
804 B
HTML

{% block nav %}
<nav>
<!--
*** MAIN NAVIGATION BUTTONS ***
Replace the hashtag '#' with a real URL (or not).
If you don't want sound effects, replace the <button> element with a basic <a> tag shown here in this comment:
<a href="#">01</a>
<a href="#">02</a>
<a href="#">03</a>
<a href="#">04</a>
-->
<button onclick="playSoundAndRedirect('audio2', '/')">Systems</button>
<button onclick="playSoundAndRedirect('audio2', '/numbers')">Numbers</button>
<button onclick="playSoundAndRedirect('audio2', '/host/pve')">PVE</button>
<button onclick="playSoundAndRedirect('audio2', '/host/naspve')">
NASPVE
</button>
<!--
<button onclick="playSoundAndRedirect('audio2', '#')">03</button>
<button onclick="playSoundAndRedirect('audio2', '#')">04</button>
-->
</nav>
{% endblock %}