27 lines
882 B
HTML
27 lines
882 B
HTML
<!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>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/flask.css') }}" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="left-pannel">
|
|
{% block left_pannel %}
|
|
{% endblock %}
|
|
</div>
|
|
<div class="content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
<div class="footer">Version not detected yet</div>
|
|
</body>
|
|
|
|
</html>
|