fixed the subsites

This commit is contained in:
Patrick_Pluto 2024-09-16 16:12:51 +02:00
parent 1cd0393269
commit e0cd65ae65

View file

@ -31,5 +31,15 @@ def index():
return render_template('index.html', messages=messages)
@APP.route('/faq')
def faq():
return render_template('faq.html')
@APP.route('/contact')
def contact():
return render_template('faq.html')
if __name__ == '__main__':
APP.run(debug=True)