You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
559 B
HTML
24 lines
559 B
HTML
6 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Prolefeeder</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>
|
||
|
<a href="{{ url_for('index') }}">Home</a>
|
||
|
<a href="{{ url_for('download') }}">Download</a>
|
||
|
</div>
|
||
|
<hr>
|
||
|
{% with messages = get_flashed_messages() %}
|
||
|
{% if messages %}
|
||
|
<ul>
|
||
|
{% for message in messages %}
|
||
|
<li>{{ message }}</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endif %}
|
||
|
{% endwith %}
|
||
|
{% block content %}{% endblock %}
|
||
|
</body>
|
||
|
</html>
|