mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-27 03:41:32 +01:00
- Add theme field to User model (common) - Create migration for theme field - Add theme selection to Account Settings (html-router) - Implement server-side theme rendering in base template - Update JS for system/preference theme handling - Remove header theme toggle for authenticated users
15 lines
395 B
HTML
15 lines
395 B
HTML
{% extends "components/_navbar_layout.html" %}
|
|
|
|
{% block navbar_search %}
|
|
{% include "searchbar.html" %}
|
|
{% endblock %}
|
|
|
|
{% block navbar_actions %}
|
|
<label for="my-drawer" aria-label="open sidebar" class="hover:cursor-pointer lg:hidden">
|
|
{% include "icons/hamburger_icon.html" %}
|
|
</label>
|
|
{% if not is_authenticated %}
|
|
{% include "theme_toggle.html" %}
|
|
{% endif %}
|
|
{% endblock %}
|