Mercurial > hg > MPIWGWeb
comparison zpt/www/main_template.zpt @ 191:90d44df497a6
updated breadcrumb handling, works for members now.
author | casties |
---|---|
date | Wed, 19 Jun 2013 11:52:48 +0200 |
parents | ca6e3873107c |
children | 76ea03db3426 |
comparison
equal
deleted
inserted
replaced
190:9a09156eee7c | 191:90d44df497a6 |
---|---|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
3 <html xmlns="http://www.w3.org/1999/xhtml" metal:define-macro="page" | 3 <html xmlns="http://www.w3.org/1999/xhtml" metal:define-macro="page" |
4 tal:define="root here/MPIWGrootURL|here/en/MPIWGrootURL; | 4 tal:define="root here/MPIWGrootURL|here/en/MPIWGrootURL; |
5 crumbs template/getBreadcrumbs | nothing; | 5 global crumbs template/getBreadcrumbs | nothing; |
6 section here/getSection | nothing; | 6 section here/getSection | nothing; |
7 sections here/getSections | nothing; | 7 sections here/getSections | nothing; |
8 lang here/getLang | nothing; | 8 lang here/getLang | nothing; |
9 allsecs python:{'en':{ | 9 allsecs python:{'en':{ |
10 'institute':'institute', | 10 'institute':'institute', |
53 | 53 |
54 <div id="breadcrumbs" metal:define-slot="breadcrumbs"> | 54 <div id="breadcrumbs" metal:define-slot="breadcrumbs"> |
55 <a tal:attributes="href root">Home</a> > | 55 <a tal:attributes="href root">Home</a> > |
56 <tal:block tal:repeat="crumb crumbs | nothing"> | 56 <tal:block tal:repeat="crumb crumbs | nothing"> |
57 <tal:block tal:condition="not:repeat/crumb/end"> | 57 <tal:block tal:condition="not:repeat/crumb/end"> |
58 <a tal:attributes="href python:crumb[1]" tal:content="python:crumb[0]">News</a> > | 58 <a tal:attributes="href crumb/url; title crumb/title|nothing;" tal:content="crumb/text">News</a> > |
59 </tal:block> | 59 </tal:block> |
60 <tal:block tal:condition="repeat/crumb/end"> | 60 <tal:block tal:condition="repeat/crumb/end"> |
61 <span class="selected"> <a tal:attributes="href python:crumb[1]" tal:content="python:crumb[0]">News</a> | 61 <span class="selected"> <a tal:attributes="href crumb/url; title crumb/title|nothing;" tal:content="crumb/text">News</a> |
62 </span> | 62 </span> |
63 </tal:block> | 63 </tal:block> |
64 </tal:block> | 64 </tal:block> |
65 </div> | 65 </div> |
66 | 66 |