mirror of
https://github.com/almet/copanier.git
synced 2025-04-28 11:32:38 +02:00
22 lines
674 B
HTML
22 lines
674 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{% if title %}{{ title }} - {% endif %}Commandes Epinamap</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css"> -->
|
|
<link rel="stylesheet" type="text/css" href="/static/app.css">
|
|
{% block head %}
|
|
{% endblock head %}
|
|
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{% if message %}
|
|
<div class="notification {{ message[1] }}">{{ message[0] }}</div>
|
|
{% endif %}
|
|
</header>
|
|
{% block body %}
|
|
{% endblock body %}
|
|
</body>
|
|
</html>
|