diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4feca67 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.vscode/ +__pycache__/ +venv/ diff --git a/app.py b/app.py new file mode 100644 index 0000000..c76219f --- /dev/null +++ b/app.py @@ -0,0 +1,7 @@ +from flask import Flask, render_template + +app = Flask(__name__) + +@app.route("/") +def hello_world(): + return render_template('index.jinja') \ No newline at end of file diff --git a/scripts/main.js b/static/scripts/main.js similarity index 100% rename from scripts/main.js rename to static/scripts/main.js diff --git a/style/main.css b/static/style/main.css similarity index 100% rename from style/main.css rename to static/style/main.css diff --git a/index.html b/templates/index.jinja similarity index 95% rename from index.html rename to templates/index.jinja index 77d6eaf..9f28325 100644 --- a/index.html +++ b/templates/index.jinja @@ -6,8 +6,8 @@ Toddler Shop - - + +