mark2web/example/templates/index.html

39 lines
1.2 KiB
HTML
Raw Normal View History

2019-02-12 12:52:46 +01:00
<html>
<meta>
<title>{{ Meta.Title }}</title>
2019-02-12 13:05:26 +01:00
<meta name="description" content="{{ Meta.Description }}" />
<meta name="keywords" content="{{ Meta.Keywords }}" />
2019-02-12 15:28:22 +01:00
<style>
a {
color: black;
}
body {
color: #333;
}
</style>
2019-02-12 12:52:46 +01:00
</meta>
2019-02-12 15:28:22 +01:00
<body style="margin: 0; padding: 2;">
<header style="background-color: lightgrey; padding: 20px;">
2019-02-12 19:09:25 +01:00
<div><img src="../assets/img/logo.png" style="max-width: 80%; margin-bottom: 20px;"></div>
2019-02-12 15:28:22 +01:00
<div><b>main Level 1</b></div>
<ul>
{{#each NavMap.de.SubMap.main.SubSlice }}
<li><a href="{{ GoTo }}">{{ Navname }}</a></li>
{{/each}}
</ul>
</header>
2019-02-12 13:05:26 +01:00
2019-02-12 15:28:22 +01:00
<div style="padding: 20px;">
{{{ Body }}}
</div>
<footer style="background-color: lightgrey; padding: 20px;">
<div><b>service Level 1</b></div>
<ul>
{{#each NavMap.de.SubMap.service.SubSlice }}
<li><a href="{{ GoTo }}">{{ Navname }}</a></li>
{{/each}}
</ul>
</footer>
2019-02-12 12:52:46 +01:00
</body>
</html>