83 lines
2.5 KiB
Plaintext
83 lines
2.5 KiB
Plaintext
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
|
||
<!-- Basic Page Needs
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<meta charset="utf-8">
|
||
<title>Ro(wing)T(rips)</title>
|
||
<meta name="description" content="">
|
||
<meta name="author" content="">
|
||
|
||
<!-- Mobile Specific Metas
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
||
<!-- CSS
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<link rel="stylesheet" href="/public/css/normalize.css">
|
||
<link rel="stylesheet" href="/public/css/skeleton.css">
|
||
<style>
|
||
.button{
|
||
font-size: 25px;
|
||
}
|
||
</style>
|
||
|
||
<!-- Favicon
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<link rel="icon" type="image/png" href="images/favicon.png">
|
||
|
||
</head>
|
||
<body>
|
||
|
||
|
||
{% if user %}
|
||
<div class="bg-gray p-1 mb-3">
|
||
<div class="container content-center-end">
|
||
{% if user.is_admin %}
|
||
<a class="button mb-0 mr-2" href="/">🚣</a>
|
||
<a class="button mb-0 mr-2" href="/user">👥</a>
|
||
{% endif %}
|
||
<a class="button button-primary mb-0 font-base light" href="/logout">LOGOUT</a>
|
||
</div>
|
||
</div>
|
||
{% endif %}
|
||
|
||
<!-- Primary Page Layout
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<div class="container">
|
||
{% if flash %}
|
||
{% if flash.0 == "success" %}
|
||
<div class="row">
|
||
<div class="one-column p-1 text-white bg-green mb-3 light text-center">
|
||
{{ flash.1 }}
|
||
</div>
|
||
</div>
|
||
{% endif %}
|
||
{% if flash.0 == "error" %}
|
||
<div class="row">
|
||
<div class="one-column p-1 text-white bg-red mb-3 bold text-center">
|
||
{{ flash.1 }}
|
||
</div>
|
||
</div>
|
||
{% endif %}
|
||
{% endif %}
|
||
|
||
|
||
<div class="row">
|
||
<div class="column">
|
||
{% block content %}
|
||
|
||
{% endblock content %}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<!-- End Document
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
</body>
|
||
</html>
|
||
|
||
|