29 lines
No EOL
1 KiB
HTML
29 lines
No EOL
1 KiB
HTML
<!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>— Ton équipe favorite</p>
|
|
</div>
|
|
</article>
|
|
<center><small><a href="/admin/">Administration</a></small></center>
|
|
</body>
|
|
</html> |