Commit e3d4d253 authored by Kevin Deldycke's avatar Kevin Deldycke

Add needed semantics to style the breadcrumb.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@10183 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ea39419b
...@@ -57,7 +57,8 @@ ...@@ -57,7 +57,8 @@
tal:condition="remaining_items">\n tal:condition="remaining_items">\n
<li tal:define="current_item python: remaining_items[0];\n <li tal:define="current_item python: remaining_items[0];\n
remaining_items python: remaining_items[1:]">\n remaining_items python: remaining_items[1:]">\n
<a tal:attributes="href python: current_item[1].WebSite_getDocumentUrl()"\n <a tal:attributes="href python: current_item[1].WebSite_getDocumentUrl();\n
class python: len(remaining_items) == 0 and \'selected\' or \'\'"\n
tal:content="python: current_item[0]"/>\n tal:content="python: current_item[0]"/>\n
<tal:block metal:use-macro="here/breadcrumb/macros/renderBreadcrumbItem"/>\n <tal:block metal:use-macro="here/breadcrumb/macros/renderBreadcrumbItem"/>\n
</li>\n </li>\n
...@@ -65,9 +66,9 @@ ...@@ -65,9 +66,9 @@
</tal:block>\n </tal:block>\n
\n \n
<!-- Initialize the recursive loop -->\n <!-- Initialize the recursive loop -->\n
<tal:block tal:define="remaining_items python: context.WebSite_getBreadcrumbItemList()">\n <div class="breadcrumb" tal:define="remaining_items python: context.WebSite_getBreadcrumbItemList()">\n
<tal:block metal:use-macro="here/breadcrumb/macros/renderBreadcrumbItem"/>\n <tal:block metal:use-macro="here/breadcrumb/macros/renderBreadcrumbItem"/>\n
</tal:block> </div>
]]></string> </value> ]]></string> </value>
</item> </item>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment