From efc0fcf11df1a6c39d6a260ba4c97ee03e327e4d Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Sun, 31 Aug 2025 17:55:04 +0200 Subject: [PATCH] [CHANGE] Load Framework CSS before theme CSS So it's available when the theme CSS starts loading. --- allianceauth/templates/allianceauth/base-bs5.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/allianceauth/templates/allianceauth/base-bs5.html b/allianceauth/templates/allianceauth/base-bs5.html index a5bcb96d..a3dcd795 100644 --- a/allianceauth/templates/allianceauth/base-bs5.html +++ b/allianceauth/templates/allianceauth/base-bs5.html @@ -18,10 +18,11 @@ {% block title %}{% block page_title %}{% endblock page_title %} - {{ SITE_NAME }}{% endblock title %} + {% include 'bundles/auth-framework-css.html' %} + {% theme_css %} {% include 'bundles/fontawesome.html' %} - {% include 'bundles/auth-framework-css.html' %} {% include 'bundles/jquery-js.html' %} {% include 'bundles/auth-framework-js.html' %}