39 lines
847 B
HTML
39 lines
847 B
HTML
<!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>
|