62 lines
2.1 KiB
Plaintext
62 lines
2.1 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">
|
||
|
||
<!-- FONT
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
|
||
|
||
<!-- 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>
|
||
|
||
<!-- Primary Page Layout
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<div class="container">
|
||
{% if user %}
|
||
{% if user.is_admin %}
|
||
<a href="/user">USER</a>
|
||
{% endif %}
|
||
<a href="/logout">LOGOUT</a>
|
||
{% endif %}
|
||
<div class="row">
|
||
<div class="column">
|
||
{% block content %}
|
||
|
||
{% endblock content %}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<!-- End Document
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
</body>
|
||
</html>
|
||
|
||
|