Init commit

This commit is contained in:
2025-07-03 01:37:41 +03:00
committed by Sweetbread
commit f5afca83d2
25 changed files with 464 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
from os import system as console
from flask import Flask, render_template
app = Flask(__name__)
console("sass static/style/main.scss static/style/main.css")
@app.route("/")
def index():
return render_template('index.html')
@app.route("/host")
def host():
return render_template('host.html')
@app.route("/us")
def us():
return render_template('us.html')