如何使用KapellaTemplate正确集成运行Flask(app.py)

时间:2019-12-11 03:59:21

标签: python templates flask dashboard

我想知道如何使用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 ...页面出现但没有图像..格式不正确 enter image description here

模板应如下所示 enter image description here

提供帮助。谢谢

0 个答案:

没有答案