Skip to content

Commit

Permalink
Order stylesheets in base.html
Browse files Browse the repository at this point in the history
In order for overrides to work the expected way, go from the most
general down to the specific: upstream < app.css (theme) < itou.css
(overrides).
  • Loading branch information
francoisfreitag committed Jan 7, 2025
1 parent bab08d9 commit bcb6f0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion itou/templates/layout/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
<meta property="twitter:image" content="{{ ITOU_PROTOCOL }}://{{ ITOU_FQDN }}{% static "img/logo_metatags.png" %}">

<link rel="shortcut icon" href="{% static_theme_images "favicon.ico" %}" type="image/ico">
<link rel="stylesheet" href="{% static "vendor/theme-inclusion/stylesheets/app.css" %}">
<link rel="stylesheet" href="{% static "vendor/easymde/easymde.min.css" %}">
<link rel="stylesheet" href="{% static "vendor/theme-inclusion/stylesheets/app.css" %}">
<link rel="stylesheet" href="{% static "css/itou.css" %}">
{% block extra_head %}{% endblock %}
</head>
Expand Down

0 comments on commit bcb6f0f

Please sign in to comment.