First draft of a website

This commit is contained in:
2021-08-22 15:50:01 +03:00
parent a907acf175
commit dfd8cc2f3c
3 changed files with 46 additions and 0 deletions

7
main.py Normal file
View File

@ -0,0 +1,7 @@
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route("/")
def main():
return render_template('index.html')