initial commit

This commit is contained in:
2025-09-16 09:25:23 +02:00
commit 0746cc4296
43 changed files with 13336 additions and 0 deletions

23
templates/_nav.html Normal file
View File

@@ -0,0 +1,23 @@
{% 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 %}