15 lines
313 B
Python
15 lines
313 B
Python
import os
|
|
from os import system as console
|
|
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
os.system("sass static/scss/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')
|