有什么办法可以使用动态页眉和页脚吗?
在我的项目中,我可以为每页定义全局变量和动态变量数据。
<body>
<header>
<My dynamic header template>
</header>
<content>
<Page template>
<content>
<footer>
<My dynamic footer template>
<footer>
答案 0 :(得分:0)
您可以使用Include方法解决此问题
{% include "Template_path" with title_pager="title_path" %}
title_path:路径的标题(如果需要) template_path:模板文件的路径 这将通过根据您的要求提供动态template_path来解决您的问题。