是否可以执行带烧瓶的包含?

Mic*_*ael 34 html templates ssi flask

假设我在template.html中保存了模板布局.此模板包括横幅,侧面导航,内容容器和页脚.我是否可以使用flask来分解这些页面元素,以便我可以拥有banner.html,sidenavigation.html等文件,并在template.html中呈现这些不同的文件?

Liy*_*ang 71

来自:http://jinja.pocoo.org/docs/templates/#include

template.html

{% include 'banner.html' %}
{% include 'sidenavigation.html' %}
{% include 'content.html' %}
{% include 'footer.html' %}
Run Code Online (Sandbox Code Playgroud)