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:
Quality App Developer
2026-01-28 01:04:11 +02:00
parent 8de85ca87f
commit ac24e20fe1

View File

@@ -12,7 +12,7 @@
<!-- Base CSS -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/base.css') }}">
<!-- 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 %}
</head>