我有一个 Django 网站,我已将 html 文件分成 base.html 文件,如下所示:
{% include 'head.html' %}
<body>
{% include 'nav.html' %}
{% block content %}
{% endblock content %}
{% include 'footer.html' %}
{% include 'scripts.html' %}
</body>
</html>
由于包含 head.html,每个页面上的标题都是相同的,因为 head.html 只有 1 个标题。这是 head.html 文件:
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{% static 'css/materialize.css' %}">
<link rel="stylesheet" href="{% static 'css/materialize.min.css' %}">
<link rel="stylesheet" href="{% static 'css/style.css' %}">
<link rel="stylesheet" href="{% static 'css/custom.css' %}">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<title>mytitle</title>
</head>
但我想为不同的页面显示不同的标题,但我不知道该怎么做。有人有什么想法吗?
慕慕森
开满天机
慕无忌1623718
慕工程0101907
相关分类