autopeering/web/frontend/base.html

22 lines
846 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<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">
<title>{{config["MNT"]}} Autopeering</title>
<link rel="stylesheet" href="{{config['base-dir']}}static/style.css">
</head>
<body>
2022-11-19 18:12:01 +01:00
<header class="flex flex-row"><div></div><a href="{{config['base-dir']}}">{{config["MNT"]}} Autopeering</a>{% if "login" in session %}<a href="{{config['base-dir']}}logout">logout</a>{% else %} <a href="{{config['base-dir']}}login?return=/peerings">login</a>{%endif%}</header>
2022-11-17 06:43:43 +01:00
<div class="content flex">
{% block content %}
{% endblock %}
</div>
<footer class="flex">
<div></div>
<div></div>
<div> &#127279; LARE-MNT</div>
</footer>
</body>
</html>