Files
lair.moe/app.py
T

16 lines
341 B
Python
Raw Normal View History

2025-07-31 01:27:33 +03:00
import os
from os import system as console
2025-07-03 01:37:41 +03:00
from flask import Flask, render_template
2025-07-31 01:27:33 +03:00
from flask_scss import Scss
2025-07-03 01:37:41 +03:00
app = Flask(__name__)
2025-07-31 01:27:33 +03:00
os.system("sass static/scss/main.scss static/style/main.css")
2025-07-03 01:37:41 +03:00
@app.route("/")
2025-07-31 23:34:17 +03:00
def index():
2025-07-03 01:37:41 +03:00
return render_template('index.html')
2025-08-01 00:45:24 +03:00
@app.route("/host")
def host():
return render_template('host.html')