2025-07-03 01:37:41 +03:00
|
|
|
from os import system as console
|
|
|
|
|
from flask import Flask, render_template
|
|
|
|
|
|
|
|
|
|
app = Flask(__name__)
|
2025-08-07 21:16:47 +03:00
|
|
|
|
|
|
|
|
if app.debug:
|
|
|
|
|
console("sass static/style/main.scss static/style/main.css")
|
2025-07-03 01:37:41 +03:00
|
|
|
|
|
|
|
|
@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')
|