2015-05-21 13:17:33 +02:00
|
|
|
<!doctype html>
|
|
|
|
{% block head %}
|
2023-01-02 16:02:03 +01:00
|
|
|
<title>{% block title %}{% endblock %}</title>
|
|
|
|
<meta charset=utf-8>
|
|
|
|
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
|
2015-05-21 13:17:33 +02:00
|
|
|
<link rel="stylesheet" href="https://static.opensuse.org/themes/bento/css/style.fluid.css" media="screen" />
|
|
|
|
{% endblock %}
|
|
|
|
{% for message in get_flashed_messages() %}
|
|
|
|
<p class=message>{{ message }}
|
|
|
|
{% endfor %}
|
|
|
|
{% block body %}{% endblock %}
|