Is it possible to perform Includes with flask?

亡梦爱人 提交于 2019-11-29 09:03:39

From: http://jinja.pocoo.org/docs/templates/#include

template.html

{% include 'banner.html' %}
{% include 'sidenavigation.html' %}
{% include 'content.html' %}
{% include 'footer.html' %}
plaes

By default, Flask uses Jinja2 as its template engine. See Jinja's Template Designer Documentation how it's done.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!