fix: Remove extra '>' character from theme CSS link tag in base.html
This was causing a literal '>' character to appear at the top of all pages.
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
<!-- Base CSS -->
|
<!-- Base CSS -->
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/base.css') }}">
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/base.css') }}">
|
||||||
<!-- Theme CSS (Light/Dark Mode) -->
|
<!-- Theme CSS (Light/Dark Mode) -->
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/theme.css') }}">>
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/theme.css') }}">
|
||||||
|
|
||||||
{% block extra_css %}{% endblock %}
|
{% block extra_css %}{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
Reference in New Issue
Block a user