migrate app from svelte

This commit is contained in:
2025-12-26 13:01:37 -06:00
commit 99d68bd5fb
29 changed files with 590 additions and 0 deletions

31
app.py Normal file
View File

@@ -0,0 +1,31 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def index():
return render_template("index.html")
@app.route("/about")
def about():
return render_template("about.html")
@app.route("/contact")
def contact():
return render_template("contact.html")
@app.route("/portfolio")
def portfolio():
return render_template("portfolio.html")
@app.route("/dog")
def dog():
return render_template("dog.html")
@app.route("/blog")
def blog():
return render_template("blog.html")
if __name__ == '__main__':
app.run(debug=True)