html – 是否可以执行包含烧瓶?

前端之家收集整理的这篇文章主要介绍了html – 是否可以执行包含烧瓶?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
说我在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' %}
原文链接:https://www.f2er.com/html/231121.html

猜你在找的HTML相关文章