Files
Hasscall/app/templates/base/base.html
T

42 lines
996 B
HTML

<!doctype html>
<html lang="en">
<head>
{% block head %}
<title>Hasscall</title>
<link rel="stylesheet" href="{{ url_for('static', filename='simple.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='custom.css') }}">
<meta charset="utf-8">
{% endblock %}
</head>
<body>
{% block body %}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<header>
{% block header %}
{% endblock %}
</header>
<main>
{% block main %}
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
<blockquote class="flashes {{ category }}">
<p>{{ message }}</p>
</blockquote>
{% endfor %}
{% endif %}
{% endwith %}
{% endblock %}
</main>
<footer>
<p>Created by Kenneth van Ewijk</p>
</footer>
{% endblock %}
</body>
</html>