说我在template.html中保存了一个模板布局.此模板包括横幅,侧面导航,内容容器和页脚.我可以使用烧瓶来分解这些页面元素,以便我可以有一些文件,如banner.html,sidenavigation.html等,并在template.html中渲染这些不同的文件?
解决方法
来自:
http://jinja.pocoo.org/docs/templates/#include
template.html
{% include 'banner.html' %} {% include 'sidenavigation.html' %} {% include 'content.html' %} {% include 'footer.html' %}