mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-13 05:45:25 +01:00
19 lines
822 B
HTML
19 lines
822 B
HTML
{% load cache_access %}
|
|
{% load settings %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
{% load active_link %}
|
|
<nav class="navbar border-b-2 border-base-100 bg-base-200 flex lg:hidden shadow-lg" hx-boost="true">
|
|
<div class="container flex justify-between items-center w-full">
|
|
<a class="text-xl font-bold text-primary" href="{% url 'index' %}">
|
|
<div class="logo mobile"></div>
|
|
</a>
|
|
<button class="btn btn-ghost lg:hidden" type="button" data-bs-toggle="offcanvas" data-bs-target="#sidebar"
|
|
aria-controls="sidebar" aria-label={% translate "Toggle navigation" %}>
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</nav>
|