mark2web/example/templates/partials/header.html

20 lines
815 B
HTML
Raw Normal View History

2019-02-12 20:41:31 +01:00
<header>
2019-02-13 12:21:20 +01:00
<div id="logoDiv"><img src="../assets/img/logo.png"></div>
2019-02-13 13:14:16 +01:00
<div id="mainNavDiv" class="nav">
2019-02-13 12:21:20 +01:00
<div><b>main Level 1</b></div>
2019-02-12 20:41:31 +01:00
<ul>
{{#each NavMap.de.SubMap.main.SubSlice }}
2019-02-13 13:14:16 +01:00
<li {{#if Active }}class="active"{{/if }}><a href="{{ GoTo }}">{{ Navname }}</a>
2019-02-12 20:41:31 +01:00
{{#if SubSlice }}
<ul>
{{#each SubSlice }}
2019-02-13 13:14:16 +01:00
<li {{#if Active }}class="active"{{/if }}><a href="{{ GoTo }}">{{ Navname }}</a></li>
2019-02-12 20:41:31 +01:00
{{/each }}
</ul
{{/if }}
</li>
{{/each }}
</ul>
</div>
2019-02-12 19:36:11 +01:00
</header>