some structure
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simple_Not 2023-07-03 22:41:49 +10:00
parent 7a08de831a
commit d4be063d00
2 changed files with 13 additions and 0 deletions

4
app.py
View File

@ -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")

9
templates/main-page.html Normal file
View File

@ -0,0 +1,9 @@
{% extends "base.html" %}
{% block content %}
<div class="content">
sup
</div>
{% endblock content %}