Adrianux.net/app.py

19 lines
423 B
Python
Raw Normal View History

2024-11-15 07:26:13 +00:00
#!/usr/bin/env python3
from flask import Flask, render_template, redirect, url_for
app = Flask(__name__)
navigation = {"Imprint":"imprint"}
@app.route("/imprint")
def root():
return render_template("imprint.html")
2024-11-12 15:44:04 +00:00
2024-11-15 07:26:13 +00:00
@app.route("/about")
def about():
return render_template("about.html")
2024-11-12 15:44:04 +00:00
2024-11-15 07:26:13 +00:00
@app.route("/")
def homepage():
return render_template("homepage.html")
2024-11-12 15:44:04 +00:00
2024-11-15 07:26:13 +00:00
if __name__ == "__main__":
app.run(debug=True)