zhdo.space/app.py

16 lines
313 B
Python

from flask import Flask
from flask.templating import render_template
app = Flask(__name__)
@app.route("/")
def index():
return render_template("index.html")
@app.route("/privacy")
def privacypolicy():
return render_template("privacypolicy.html")
if __name__ == "__main__":
app.run(host='0.0.0.0')