24 lines
804 B
HTML
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 %}
|