playing around with styling and items

This commit is contained in:
warren yun 2024-09-17 20:01:38 -04:00 committed by Cara Salter
parent 3dff046e84
commit 8a94de44c0
2 changed files with 5 additions and 1 deletions

View file

@ -32,7 +32,7 @@ daemon:
@echo "--- STARTING UWSGI DAEMON ---"
@echo ""
@echo ""
source .venv/bin/activate && flask run
source .venv/bin/activate && flask --debug run
@echo ""
@echo ""
@echo "--- STARTING UWSGI DAEMON ---"

View file

@ -81,6 +81,10 @@ def create_app():
@app.route("/index.html")
def index():
return render_template("home/index.html")
@app.route("/index2.html")
def index2():
return render_template("home/index2.html")
# homepage assets
@app.route("/assets/<path:path>")