forked from rDrama/rDrama
1
0
Fork 0
Aevann 2023-12-25 00:07:42 +02:00
parent 38540c9d37
commit 0d1b2e0b38
1 changed files with 23 additions and 19 deletions

View File

@ -103,15 +103,8 @@
{% if IS_HOMOWEEN() %}
<link rel="stylesheet" href="{{('css/themes/midnight.css') | asset}}">
<link rel="stylesheet" href="{{'events/homoween/css/main_homoween.css' | asset}}">
{% elif IS_FISTMAS() %}
<link rel="stylesheet" href="{{'events/fistmas/css/main_fistmas.css' | asset}}">
{% if v and v.theme in LIGHT_THEMES %}
<link rel="stylesheet" href="{{'events/fistmas/css/themes/light.css'| asset}}">
{% else %}
<link rel="stylesheet" href="{{'events/fistmas/css/themes/dark.css'| asset}}">
{% endif %}
{% elif v %}
{% if v %}
{% if v.theme == 'classic_dark' %}
<link rel="stylesheet" href="{{('css/themes/classic.css') | asset}}">
{% endif %}
@ -125,6 +118,17 @@
<link rel="stylesheet" href="{{('css/themes/'~DEFAULT_THEME~'.css') | asset}}">
{% endif %}
{% if IS_FISTMAS() %}
<link rel="stylesheet" href="{{'events/fistmas/css/main_fistmas.css' | asset}}">
{% if v and v.theme in LIGHT_THEMES %}
<link rel="stylesheet" href="{{'events/fistmas/css/themes/light.css'| asset}}">
{% else %}
<link rel="stylesheet" href="{{'events/fistmas/css/themes/dark.css'| asset}}">
{% endif %}
{% endif %}
{% endif %}
{% if v and v.chud %}
<link rel="stylesheet" href="{{('css/chud.css') | asset}}">
{% endif %}