source: products/quintagroup.dropdownmenu/trunk/quintagroup/dropdownmenu/browser/templates/sections_recurse.pt @ 3628

Last change on this file since 3628 was 3628, checked in by kroman0, 11 years ago

Fixed html validation of mobile layout, Cleanup templates

  • Property svn:eol-style set to native
File size: 2.3 KB
Line 
1<tal:master define="level options/level|python:0;
2                    children options/children | nothing;
3                    plonefour view/is_plone_four"
4            i18n:domain="plone"
5    ><metal:main define-macro="sections_main"
6        ><tal:navitem repeat="node children"
7            ><li tal:define="is_current      node/currentItem;
8                             is_in_path      node/currentParent;
9                             li_curr_class   python:is_current and 'selected' or '';
10                             li_extr_class   python:(is_in_path and not is_current) and 'selected' or '';
11                             li_extr_class   python:(not (is_in_path or is_current)) and li_extr_class + 'plain' or li_extr_class;
12                             li_class string:${li_curr_class}${li_extr_class};
13                             li_class python:li_class or nothing"
14                 tal:attributes="class li_class"
15                ><tal:level define="show_children node/show_children;
16                            children node/children;
17                            show_icons view/conf/show_icons;
18                            item_icon node/item_icon;
19                            item_type node/normalized_portal_type | nothing;
20                            a_class python:children and 'hasChildrens' or nothing"
21                    ><a tal:attributes="href node/getURL;
22                                        title node/Description|nothing;
23                                        class a_class"
24                        ><img tal:condition="python: show_icons and not plonefour"
25                              tal:replace="structure item_icon/html_tag | nothing"
26                        /><span tal:content="node/Title"
27                                tal:attributes="class python: plonefour and show_icons and item_type and 'contenttype-'+ item_type or nothing"
28                            >Selected Item Title</span
29                    ></a
30                ><ul tal:attributes="class python:'globalSectionsLevel'+str(level)"
31                       tal:condition="python: len(children) > 0 and show_children"
32                    ><li tal:replace="structure python:view.recurse(children=children, level=level+1)"
33                        >SubMenu</li
34                    ></ul
35                ></tal:level
36            ></li
37        ></tal:navitem
38    ></metal:main
39></tal:master>
Note: See TracBrowser for help on using the repository browser.