CRSSWebsite/template/includes/nav.twig

31 lines
1,019 B
Twig
Raw Normal View History

2023-11-26 21:40:10 +00:00
<script src="/js/nav.js" type="module"></script>
<div class="Nav-Toggle">Menu</div>
<nav class="pageNav">
2023-09-15 13:32:38 +00:00
<div class="container">
2023-11-26 21:40:10 +00:00
<div class="navLeft">
2024-01-11 19:38:35 +00:00
<a class="TransitionEnabled {% if page == 'home' %} active {% endif %}" href="/">
2023-11-26 21:40:10 +00:00
Home
</a>
2024-01-11 19:38:35 +00:00
<a class="TransitionEnabled {% if page == 'gallery' %} active {% endif %}" href="/gallery">
2023-11-26 21:40:10 +00:00
Gallery
</a>
2024-01-11 19:38:35 +00:00
<a class="TransitionEnabled {% if page == 'nations' %} active {% endif %}" href="/nations">
2023-11-26 21:40:10 +00:00
Nations
</a>
2024-01-11 19:38:35 +00:00
<a class="{% if page == 'map.js' %} active {% endif %}" href="/map">
Map & Rails
2023-11-26 21:40:10 +00:00
</a>
</div>
<div class="navRight">
2023-09-15 13:32:38 +00:00
{% if user %}
2023-11-26 21:40:10 +00:00
<a class="userButton {% if page == 'profile' %}active{% endif %}" href="{% if page == 'profile' %}#{% else %}/profile{% endif %}">
{{ user.global_name }}
</a>
2023-09-15 13:32:38 +00:00
{% else %}
2023-11-26 21:40:10 +00:00
<a class="buttonPrimary" href="{{ discord_auth }}">
Login
</a>
2023-09-15 13:32:38 +00:00
{% endif %}
2023-11-26 21:40:10 +00:00
</div>
2023-09-15 13:32:38 +00:00
</div>
</nav>