switched to non-classless CSS

This commit is contained in:
eclipse 2025-04-24 19:05:05 +02:00
parent 908d123485
commit 2e91576a08
2 changed files with 4647 additions and 10 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<html lang="de" data-theme="light">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -8,7 +8,7 @@
<meta name="description" content="Frontend für die Verwaltung von Texten und Veröffentlichungen" />
<meta name="author" content="Tobias Radloff" />
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='pico.fluid.classless.azure.css') }}">
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='pico.azure.css') }}">
<!--<link rel="apple-touch-icon" sizes="180x180" href="../icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../icons/favicon-32x32.png">
@ -22,21 +22,24 @@
</head>
<body>
<header>
<header class="container">
{% include("_nav.html") %}
</header>
<main role="document">
<header>
<h1>{% block heading %}{% endblock heading %}</h1>
</header>
<main class="container-fluid">
<article>
<header>
<h1>{% block heading %}{% endblock heading %}</h1>
</header>
{% include("_messages.html") %}
{% include("_messages.html") %}
{% block content %}<p>Hello, world.</p>{% endblock content %}
{% block content %}<p>Hello, world.</p>{% endblock content %}
</article>
</main>
<footer>
<footer class="container">
<p>trololol</p>
</footer>
</body>
</html>