[static assets] finally bloddy django finds and serves pico.min.css

also includes a favicon because the browser kept asking for one
This commit is contained in:
bronsen 2025-03-18 22:55:09 +01:00
parent 7028a03f5c
commit 2b7e478a40
5 changed files with 17 additions and 4 deletions

View file

@ -1,14 +1,19 @@
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="light dark">
<link href="{% static 'pico.min.css' %}" rel="stylesheet">
<link rel="icon" type="image/png" href="{% static 'favicon-32x32.png' %}">
<title>Teilchensammler</title>
<!-- <link href="css/style.css" rel="stylesheet"> -->
</head>
<body>
{% block content %}
<main class="container">
{% block content %}
{% endblock content %}
{% endblock content %}
</main>
</body>
</html>