我想我不明白瓶子的rebase()功能。 将动态内容模板加载到基本模板的最佳方法是什么? 以下显示的代码无效。
app.py
@route("/home")
def home():
return template('home.tpl')
@route("/contact")
def contact():
return template('contact.tpl')
base.tpl
<!DOCTYPE html>
<html>
<head>
<title>Titel</title>
<meta charset="UTF-8" />
<link href="/static/css/style.css" type="text/css" rel="stylesheet" />
</head>
<body>
{{base}}
</body>
</html>
home.tpl
% rebase('base.tpl')
<b>Hallo World...</b>