initial commit

This commit is contained in:
neingeist 2018-11-09 21:25:30 +01:00
commit 5358ea95d6
10 changed files with 93 additions and 0 deletions

23
app/templates/base.html Normal file
View file

@ -0,0 +1,23 @@
<!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>