Subversion-Projekte lars-tiefland.webanos.zeldi.de

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
4 lars 1
<nav class="topnav noprint" role="navigation">
2
    <div class="inner">
3
        {foreach $nav as $n}
4
        <ul class="level1">
5
            {foreach $n.top as $top}
6
            <li class="{if $n@last}last{/if}">
7
                <a href="{$top.dirLink}" style="cursor:pointer;" class="topnav_li" id="{$top.id}" title="Zur Kategorie {$top.name}">{$top.name}</a>
8
                {if $n.sub}
9
                <ul class="big level2 level2ul padding_top">
10
                    {section loop=$n.sub name=s_ind}
11
                    {if $n.sub[s_ind].name}
12
                    <li class="navi_level2">
13
                        <a href="{$n.sub[s_ind].link}" title="Zu {$n.sub[s_ind].name}">
14
                        {$n.sub[s_ind].name}</a>
15
                    </li>
16
                    {/if}
17
                    {/section}
18
                </ul>
19
                {/if}
20
            </li>
21
            {/foreach}
22
        </ul>
23
        {/foreach}
24
    </div>
25
</nav>