- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嗨,我已将 Django 管理模板扩展到我的 app/templates/admin 目录中。
在那个目录中我有 base.html
其中包含
<header> header content<header>
<body> body Content </body>
<footer> Footer Content</footer>
所以我创建了
header.html
其中包含
{% extends "admin/base_site.html" %}
<!-- I also tried to include base.html here-->
{% block header %}
Header Html here...
{% endblock %}
并替换
base.html
到下面的内容
{% block header %} {% endblock %}
<body> body content </body>
<footer> Footer Content </footer>
但标题内容没有被加载..所以请建议。
最佳答案
使用 包括 在使用 header.html 中的块头之前。
而且您不需要创建一个块来将一个 HTML 文件包含到另一个文件中。
在你的 header.html 文件中,只写头文件的代码。
像这样 :
{% extends "admin/base_site.html" %}
Header Html here...
{% include "templates/header.html" %}
<body> body content </body>
<footer> Footer Content </footer>
关于django - 将 Django base.html 模板分为 header、content 和 footer.html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41422634/
鉴于下面的基本 HTML 结构(我无法更改),我知道我可以使用此 CSS 扩展主要内容 div: html, body { height: 100%; } body { display: fl
这应该类似于 iOS tableview 页脚,也可以在各种网站中看到(粘性页脚)。 我想实现以下目标: A 是具有可变行数的 RecyclerView。 当 A 小于屏幕(或父级)尺寸时,B(页脚)
我有一个 Bootstrap 面板,底部有两个按钮: {{ Form::open( array('route' => array('dogs.edit', $dog->id)
我是一名优秀的程序员,十分优秀!