First Commit

This commit is contained in:
mrtoine 2025-09-12 11:11:44 +02:00
commit ce0758fbbb
496 changed files with 52062 additions and 0 deletions

View file

@ -0,0 +1,29 @@
<!doctype html>
<html>
<head>
<title>Site en Maintenance</title>
<meta charset="UTF-8">
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'themes/grid.css' %}">
<style>
h1 { font-size: 50px; }
body { background:#fff; font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>
</head>
<body>
<article>
<div>
<center><img src="/static/img/maintenance/maintenance.jpeg" style="width:300px" /></center>
</div>
<h1>{{ message.name }}</h1>
<div>
{{ message.content|safe }}
<p>&mdash; Ton équipe favorite</p>
</div>
</article>
<center><small><a href="/admin/">Administration</a></small></center>
</body>
</html>