Fixed subsides #14
1 changed files with 11 additions and 1 deletions
|
@ -31,5 +31,15 @@ def index():
|
||||||
return render_template('index.html', messages=messages)
|
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__':
|
if __name__ == '__main__':
|
||||||
APP.run(debug=True)
|
APP.run(debug=True)
|
Loading…
Reference in a new issue