diff --git a/app.py b/app.py index 6cdd183..b3118b0 100644 --- a/app.py +++ b/app.py @@ -20,6 +20,10 @@ js.build() @app.route("/") def homepage(): + return render_template("main-page.html") + +@app.route("/todo") +def page_todo(): return render_template("page1.html") diff --git a/templates/main-page.html b/templates/main-page.html new file mode 100644 index 0000000..009f67b --- /dev/null +++ b/templates/main-page.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block content %} + +
+ sup +
+ +{% endblock content %} \ No newline at end of file