Bootstrap eingefügt, Buttons ausprobiert
This commit is contained in:
6
app.py
6
app.py
@@ -1,11 +1,11 @@
|
||||
from flask import Flask, redirect, url_for, render_template
|
||||
from flask import Flask, render_template
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route('/')
|
||||
def home():
|
||||
return render_template('index.html', content=5)
|
||||
return render_template('index.html')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run()
|
||||
app.run(debug=True)
|
||||
Reference in New Issue
Block a user