Initial commit
This commit is contained in:
47
templates/core/partials/_nav.html
Normal file
47
templates/core/partials/_nav.html
Normal file
@@ -0,0 +1,47 @@
|
||||
<!-- ══ NAV ══ -->
|
||||
<nav id="main-nav">
|
||||
<div class="nav-topbar">
|
||||
<a href="{% url 'core:home' %}" class="nav-logo">
|
||||
{% load static %}
|
||||
<img src="{% static 'img/logo.png' %}" alt="Jool International" style="height:38px;width:auto;">
|
||||
</a>
|
||||
|
||||
<ul class="nav-links" id="nav-links">
|
||||
<li><a href="{% url 'core:home' %}#kiriq">KIRIQ AI</a></li>
|
||||
<li><a href="{% url 'core:home' %}#monitor">Jool Monitor</a></li>
|
||||
<li><a href="{% url 'core:home' %}#joolid">Jool ID</a></li>
|
||||
|
||||
<li><a href="{% url 'core:about' %}">À propos</a></li>
|
||||
{% if careers_enabled %}
|
||||
<li>
|
||||
<a href="{% url 'careers:job_list' %}">
|
||||
Carrières{% if open_jobs_count %} <span style="background:var(--teal);color:#fff;border-radius:100px;font-size:11px;padding:1px 7px;margin-left:4px;">{{ open_jobs_count }}</span>{% endif %}
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
|
||||
<button class="nav-hamburger" id="nav-hamburger" aria-label="Menu" aria-expanded="false">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="nav-drawer" id="nav-drawer">
|
||||
<ul>
|
||||
<li><a href="{% url 'core:home' %}#kiriq">KIRIQ AI</a></li>
|
||||
<li><a href="{% url 'core:home' %}#monitor">Jool Monitor</a></li>
|
||||
<li><a href="{% url 'core:home' %}#joolid">Jool ID</a></li>
|
||||
<li><a href="{% url 'core:home' %}#faq">FAQ</a></li>
|
||||
<li><a href="{% url 'core:about' %}">À propos</a></li>
|
||||
{% if careers_enabled %}
|
||||
<li>
|
||||
<a href="{% url 'careers:job_list' %}">
|
||||
Carrières{% if open_jobs_count %} <span style="background:var(--teal);color:#fff;border-radius:100px;font-size:11px;padding:1px 7px;margin-left:4px;">{{ open_jobs_count }}</span>{% endif %}
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
Reference in New Issue
Block a user