{% load static %} {% load sass_tags %} {# Use data attributes as storage for access in static scripts #} linkding {# Include SASS styles, files are resolved from bookmarks/styles #} {# Include specific theme variant based on user profile setting #} {% if request.user.profile.theme == 'light' %} {% elif request.user.profile.theme == 'dark' %} {% else %} {# Use auto theme as fallback #} {% endif %}
{% if has_toasts %}
{% csrf_token %} {% for toast in toast_messages %}
{{ toast.message }}
{% endfor %}
{% endif %}
{% block content %} {% endblock %}