Ludwig Nussel ea7152130f change db schema
root of all is requests
2015-05-28 13:16:49 +02:00

12 lines
444 B
HTML

<!doctype html>
{% block head %}
<title>{% block title %}{% endblock %}</title>
<meta charset=utf-8>
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
<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 %}