mark2web/example/templates/intro.html

19 lines
473 B
HTML
Raw Normal View History

2019-02-13 15:44:16 +01:00
<html>
{{> meta.html }}
<body>
<header>
<div id="logoDiv"><img src="../assets/img/logo.png"></div>
</header>
<div id="content">
{{{ Body }}}
2019-02-13 16:30:09 +01:00
<div class="langSelect">
2019-02-13 15:44:16 +01:00
{{#each NavSlice }}
2019-02-13 16:30:09 +01:00
<a href="{{ GoTo }}"><img src="../assets/img/{{ Navname }}.png" alt="{{ Navname }}" style="height: 100px;"></a>
2019-02-13 15:44:16 +01:00
{{/each }}
</div>
</div>
</body>
</html>