2023-06-17 16:52:47 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta name="robots" content="noindex, nofollow">
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="icon" type="image/png" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>MS Rewards</title>
|
2023-08-25 11:54:14 +02:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/flask.css')}}"/>
|
|
|
|
<script src="{{ url_for('static', filename='js/main.js')}}"></script>
|
2023-06-17 16:52:47 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
2023-08-29 15:30:03 +02:00
|
|
|
<input id="slide-sidebar" type="checkbox" role="button"/>
|
|
|
|
<label for="slide-sidebar">
|
|
|
|
<div id="slide">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-menu-2" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
|
|
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
|
|
|
|
<path d="M4 6l16 0"></path>
|
|
|
|
<path d="M4 12l16 0"></path>
|
|
|
|
<path d="M4 18l16 0"></path>
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
</label>
|
2023-06-17 16:52:47 +02:00
|
|
|
<div class="left-pannel">
|
|
|
|
{% block left_pannel %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-08-29 18:34:19 +02:00
|
|
|
<div class="footer">{{version}}</div>
|
2023-06-17 16:52:47 +02:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|