14 lines
333 B
Python
14 lines
333 B
Python
import os
|
|
from os import system as console
|
|
from flask import Flask, render_template
|
|
from flask_scss import Scss
|
|
|
|
app = Flask(__name__)
|
|
app.debug = True
|
|
# if not os.path.exists("static/css/main.css"):
|
|
os.system("sass static/scss/main.scss static/style/main.css")
|
|
|
|
@app.route("/")
|
|
def index():
|
|
return render_template('index.html')
|