feat: pass extra css (#1392)

This commit is contained in:
Markos Gogoulos
2025-09-24 19:01:06 +03:00
committed by GitHub
parent 1c1af489f1
commit 553a25a86f
3 changed files with 22 additions and 10 deletions

View File

@@ -28,4 +28,9 @@
<link href="{% static "css/_extra.css" %}?v={{ VERSION }}" rel="preload" as="style">
<link href="{% static "css/_extra.css" %}?v={{ VERSION }}" rel="stylesheet">
{% for css_path in EXTRA_CSS_PATHS %}
<link href="{{ css_path }}?v={{ VERSION }}" rel="preload" as="style">
<link href="{{ css_path }}?v={{ VERSION }}" rel="stylesheet">
{% endfor %}
<link href="{% static "js/_commons.js" %}?v={{ VERSION }}" rel="preload" as="script">