hs-css/test/static.py

6 lines
197 B
Python

from flask import Flask, render_template
app = Flask(__name__, static_folder='../', static_url_path='', template_folder='../')
@app.route('/')
def index():
return render_template('index.html')