This commit is contained in:
2025-08-31 00:29:53 +02:00
parent 191bd84573
commit 29611b15ca
87 changed files with 2451 additions and 0 deletions

38
app/templates/base.html Normal file
View File

@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block base_title %}{% endblock %}</title>
{% load django_vite %}
{% vite_hmr_client %}
{% block extra_head %}{% endblock %}
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
font-family: system-ui, -apple-system, sans-serif;
line-height: 1.5;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 1rem;
}
</style>
</head>
<body>
<div class="container">
{% block content %}{% endblock %}
{% vite_asset 'main.js' %}
</div>
</body>
</html>