Add about.html

This commit is contained in:
elpatron68
2024-05-26 13:48:13 +02:00
parent 390a7c02e6
commit 650279f179
7 changed files with 754 additions and 6 deletions

5
app.py
View File

@@ -94,6 +94,11 @@ def favicon():
return send_from_directory(os.path.join(app.root_path, 'static'),
'favicon.ico', mimetype='image/vnd.microsoft.icon')
@app.route('/about')
def about():
return send_from_directory(os.path.join(app.root_path, 'static'),
'about.html')
if __name__ == "__main__":
logging.info('Starting erdbeerhannah v1.0.1')
app.run(debug=True, host='0.0.0.0')