Add files

This commit is contained in:
Marijn Jansen
2019-03-08 16:04:26 +01:00
parent 3af07b3e40
commit 83f3ee2cb4
106 changed files with 8328 additions and 0 deletions

13
app.py Normal file
View File

@@ -0,0 +1,13 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def index():
return count(12)
@app.route("/<int:item_count>")
def count(item_count):
return render_template("index.html", count=item_count)