Fix-CSS-Relative-Paths

This commit is contained in:
GVSADS
2026-02-22 11:06:50 +08:00
parent b8bb80d99e
commit bb730480b1
18 changed files with 3954 additions and 0 deletions

10
app.py Normal file
View File

@@ -0,0 +1,10 @@
import flask
app = flask.Flask(__name__, template_folder = "./", static_folder = "./", static_url_path = "/")
@app.route('/')
def index():
return flask.render_template('test.html')
app.run(debug = True)