mark2web/example/templates/partials/header.html

10 lines
416 B
HTML
Raw Normal View History

2019-02-12 19:36:11 +01:00
<header style="background-color: lightgrey; padding: 20px;">
<div><img src="../assets/img/logo.png" style="max-width: 80%; margin-bottom: 20px;"></div>
<div><b>main Level 1</b></div>
<ul>
{{#each NavMap.de.SubMap.main.SubSlice }}
<li><a href="{{ GoTo }}">{{ Navname }}</a></li>
{{/each}}
</ul>
</header>