帮帮我 添加我的{%extends" menu.html" %GT;
我的页面的其余部分是白色的我再也看不到我的内容了 resultat
答案 0 :(得分:0)
请更改
{% extends "menu.html" %
TO
{% extends "menu.html" %}
答案 1 :(得分:0)
也许您忘了打开扩展menu.html
的页面?
menu.html文件
<html>
<body>
some menu code here
{% block content %}
{% endblock %}
</body>
</html>
file_which_extends_menu.html
{% extends 'menu.html' %}
{% block content %}
your content
{% endblock %}