我想知道如何使用flask app.py利用Kapella-Free-Bootstrap-Admin-Template中的免费模板。对此事表示感谢。谢谢。
app = flask.Flask(__name__)
@app.route("/")
def index():
return flask.render_template("index.html")
if __name__ == "__main__":
import os
port = 8000
# Open a web browser pointing at the app.
os.system("open http://localhost:{0}".format(port))
# Set up the development server on port 8000.
app.debug = True
app.run(host='0.0.0.0', port=port)
结构如下
app.py
templates
index.html
css
images
当我运行app.py ...页面出现但没有图像..格式不正确
提供帮助。谢谢