63 lines
3.1 KiB
HTML
63 lines
3.1 KiB
HTML
<!doctype html>
|
|
<head>
|
|
<title>{% block title %}{% endblock %}Dankventskalender</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='calender/w3.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='calender/style.css') }}">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-colors-highway.css">
|
|
</head>
|
|
<body class="w3-light-grey">
|
|
|
|
<div class="w3-display-container">
|
|
<!-- Navigation bar -->
|
|
<nav>
|
|
<div class="w3-bar w3-center w3-highway-red w3-xlarge ">
|
|
<a class="w3-bar-item w3-button" onclick="goBack()"><i class="fa fa-arrow-left"></i></a>
|
|
<script>
|
|
function goBack() {
|
|
window.history.back();
|
|
}
|
|
</script>
|
|
<a href="https://johnnyikarus.de" class="w3-bar-item w3-button">Home</a>
|
|
|
|
<div class="w3-dropdown-hover">
|
|
<button class="w3-button">Dankventskalender</button>
|
|
<div class="w3-dropdown-content w3-bar-block w3-card-4">
|
|
<a href="http://dankventskalender.johnnyikarus.de" class="w3-bar-item w3-button">Dankventskalender
|
|
2019</a>
|
|
<a href="{{ url_for('static', filename='archive/Dankventskalender_2018.html') }}"
|
|
class="w3-bar-item w3-button">Dankventskalender
|
|
2018</a>
|
|
<a href="{{ url_for('static', filename='archive/Dankventskalender_2017.html') }}"
|
|
class="w3-bar-item w3-button">Dankventskalender
|
|
2017</a>
|
|
</div>
|
|
</div>
|
|
<a href="https://johnnyikarus.de/memes.php" class="w3-bar-item w3-button button_flash_animation">Memes</a>
|
|
<!--a href="#" class="w3-bar-item w3-button">Push Me!</a-->
|
|
<!--<a href="..." class="w3-bar-item w3-button" style="opacity: 0.1">Privacy</a>-->
|
|
<!--<div class="w3-medium w3-margin-right w3-align-right"><p align="right">Visitors: </p></div>-->
|
|
{% if g.user %}
|
|
<span class="w3-bar-item w3-right">{{ g.user['username'] }}</span>
|
|
<a class="w3-bar-item w3-right w3-button" href="{{ url_for('auth.logout') }}">Log Out</a>
|
|
{% else %}
|
|
<a class="w3-bar-item w3-right w3-button" href="{{ url_for('auth.register') }}">Register</a>
|
|
<a class="w3-bar-item w3-right w3-button" href="{{ url_for('auth.login') }}">Log In</a>
|
|
{% endif %}
|
|
</div>
|
|
</nav>
|
|
|
|
</div>
|
|
<section class="content">
|
|
<header>
|
|
{% block header %}{% endblock %}
|
|
</header>
|
|
{% for message in get_flashed_messages() %}
|
|
<div class="flash">{{ message }}</div>
|
|
{% endfor %}
|
|
</section>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</body>
|
|
<footer class="w3-highway-red">Special thanks to <strong>Langspielplatte</strong> for hosting this webspace! <strong><3</strong> </footer> |