sidebar.html 文件内容如下:
base.html 文件内容如下:
…
{% include ‘includes/sidebar.html’ %}
…
子模版 xxx.html 内容如下:
{% extends “base.html” %}
…
{% block xxx %} hello world {% endblock xxx %}
1、试了下包含子模版的页面没有显示出 hello world 相关的内容
2、把sidebar.html局部模板的内容迁移到base.html中可以正常显示
3、用2的解决方案的话现在base.html 代码行数大幅加长,请教下有没更好的解决方案。