2022-11-12 14:50:18 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2022-12-07 17:00:52 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2022-11-12 14:50:18 +01:00
|
|
|
<title>{{config["MNT"]}} Autopeering</title>
|
2022-12-07 17:00:52 +01:00
|
|
|
<link rel="stylesheet" href="{{config['base-dir']}}static/style.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header class="flex flex-row">
|
|
|
|
<div></div>
|
|
|
|
<a href="{{config['base-dir']}}">{{config["MNT"]}} Autopeering</a>{% if
|
|
|
|
"login" in session %}
|
|
|
|
<div>
|
|
|
|
<a href="{{config['base-dir']}}peerings">manage</a>
|
|
|
|
<a href="{{config['base-dir']}}logout">logout</a>
|
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
<a href="{{config['base-dir']}}login?return=/peerings">login</a>{%endif%}
|
|
|
|
</header>
|
|
|
|
<div class="content flex">{% block content %} {% endblock %}</div>
|
2022-11-12 14:50:18 +01:00
|
|
|
<footer class="flex">
|
2022-12-07 17:00:52 +01:00
|
|
|
<div></div>
|
|
|
|
<div></div>
|
|
|
|
<div>🄯 LARE-MNT</div>
|
2022-11-12 14:50:18 +01:00
|
|
|
</footer>
|
2022-12-07 17:00:52 +01:00
|
|
|
</body>
|
|
|
|
</html>
|