rebase语句如何在Bottle SimpleTemplate引擎中工作?

时间:2014-07-24 07:39:58

标签: python template-engine bottle

我想我不明白瓶子的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>

0 个答案:

没有答案