1、模板继承
母版中需要继承的地方:
{% block content %} {% endblock %}
对应的子版中文件最开头写:
{% extends 'head_demo.html' %}
然后把主内容写到block 中间,content为自定义的名字,母版和子版一一对应
{% block content %} {% endblock %}
2、模板导入
直接在源文件中写入以下代码
{% include 'home_right.html' %}
3、代码示例
</head> <body> {% block content %} {% endblock %} </body> </html>
{% extends 'head_demo.html' %} {% block content %} <div class="container theme-showcase" role="main"> <div class="right" style=" 40%"> {% include 'home_right.html' %} </div </div> {% endblock %}