Added head_styles Jinja block to base view template head section to allow for page specific style injections.

Continuing work on the re-design and clean-up of the dashboard view.
This commit is contained in:
Matt Scott
2023-02-19 09:11:44 -05:00
parent 58aabacd91
commit d70ded18c2
2 changed files with 20 additions and 20 deletions

View File

@ -17,6 +17,7 @@
{% if SETTING.get('custom_css') %}
<link rel="stylesheet" href="/static/custom/{{ SETTING.get('custom_css') }}">
{% endif %}
{% block head_styles %}{% endblock %}
{% endblock %}
</head>