Website/template/includes/nav.twig

41 lines
1.3 KiB
Twig
Raw Normal View History

{% if not reduced %}
2023-11-26 21:40:10 +00:00
<script src="/js/nav.js" type="module"></script>
<div class="navToggle">Menu</div>
2023-11-26 21:40:10 +00:00
<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">
<a class="transitionEnabled {% if page == 'home' %} active {% endif %}" href="/">
2023-11-26 21:40:10 +00:00
Home
</a>
<a class="transitionEnabled {% if page == 'gallery' %} active {% endif %}" href="/gallery">
2023-11-26 21:40:10 +00:00
Gallery
</a>
<a class="transitionEnabled {% if page == 'nations' %} active {% endif %}" href="/nations">
2023-11-26 21:40:10 +00:00
Nations
</a>
<a class="transitionEnabled {% if page == 'companies' %} active {% endif %}" href="/companies">
Companies
</a>
2024-01-11 19:38:35 +00:00
<a class="{% if page == 'map.js' %} active {% endif %}" href="/map">
Map
2023-11-26 21:40:10 +00:00
</a>
2024-04-01 17:10:19 +00:00
{% if user.is_admin == 1 %}
<a href="/admin">
Admin Panel
</a>
{% endif %}
2023-11-26 21:40:10 +00:00
</div>
<div class="navRight">
2023-09-15 13:32:38 +00:00
{% if user %}
2024-04-01 17:10:19 +00:00
<a class="transitionEnabled userButton {% if page == 'profile' %}active{% endif %}" href="{% if page == 'profile' %}#{% else %}/profile{% endif %}">
2023-11-26 21:40:10 +00:00
{{ user.global_name }}
</a>
2023-09-15 13:32:38 +00:00
{% else %}
2024-04-01 17:10:19 +00:00
<a class="buttonPrimary" href="{{ dc_uri }}">
2023-11-26 21:40:10 +00:00
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>
{% endif %}