themes properly implemented #1 - requires db init

This commit is contained in:
cube
2026-03-20 23:13:52 +00:00
parent fb95c4b9f4
commit 7125dd7cfe
19 changed files with 167 additions and 202 deletions

View File

@@ -3,6 +3,9 @@
<title>{% block title %}{% endblock %} - Myriad</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='themes/default.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='themes/purple.css') }}">
<div id="main">
@@ -40,13 +43,7 @@
</div>
<div class="container">
{% block header %}{% endblock %}
{% for message in get_flashed_messages() %}
<div class="flash">{{ message }}</div>
{% endfor %}
{% block content %}{% endblock %}
</div>
</div>