webpy模板多重继承,可能吗?
我想将索引页面分成小的独立 .html 部分,例如:
down_bar.html:
等等。
现在,要构建一个新页面,是否可以使用 default webpy 模板器将这些片段嵌入到其他页面中?
也许是这样的?:
在 admin.html 中:$def with(some_parameters):
I want to divide index page into small stand alone .html parts like:
up_bar.html:<p><center>
<h1>home</h1>
Menu: <a href="/">home</a> <a href="add">add</a> <a href="/import">import</a>
down_bar.html:<a href="/path/.."/>
and so on.
Now, to build a new page is it possible to embed those pieces into other page using default webpy templator?
Maybe something like that?:
in admin.html:$def with(some_parameters):
<title>Admin panel</title>
$include('side_bar.html')
... body stuff ...
$include('down_bar.html')
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
可以在这里找到模板继承的基本但很好的介绍:http://webpy.org/cookbook/layout_template
A basic but good introduction to template inheritance can be found here: http://webpy.org/cookbook/layout_template
在这里找到答案:
http://groups.google.com/group/webpy/msg/ea6da02dfb9eedc4?dmode=source
一些解释会很棒。
Found an answer here:
http://groups.google.com/group/webpy/msg/ea6da02dfb9eedc4?dmode=source
Some explanation will be great.
我对我的代码执行了此操作
,现在您只需在
index.html
中插入$:content
I did this to my code
now you just insert
$:content
inindex.html