有人成功尝试过 jinja2 模板继承吗?该示例对我来说只是部分工作。
base.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
{% block head %}
<link rel="stylesheet" href="style.css" />
<title>{% block title %}{% endblock %} - My Webpage</title>
{% endblock %}
</head>
<body>
<div id="content">{% block content %}{% endblock %}</div>
<div id="footer">
{% block footer %}
© Copyright 2008 by <a href="http://domain.invalid/">you</a>.
{% endblock %}
</div>
</body>
index.html(子模板)
{% extends "base.html" %}
{% block title %}Index{% endblock %}
{% block head %}
{{ super() }}
<style type="text/css">
.important { color: #336699; }
</style>
{% endblock %}
{% block content %}
<h1>Index</h1>
<p class="important">
Welcome on my awesome homepage.
</p>
{% endblock %}
我的输出
我的问题:1.页面标题是“索引”。应该是“Index - Mypage” 2. 没有页脚
请帮忙!!!!供参考:我正在使用最新的谷歌应用引擎,python 2.7,IDE 是 Visual Studio 2012 + Python for Visual Studio,KAY 框架(从 django 和 jinja2 扩展)
视图.py
def index(request):
return render_to_response('myapp/index.html')