mark2web/example/templates/mitBild.html

18 lines
292 B
HTML
Raw Normal View History

2019-02-12 15:43:11 +01:00
<html>
2019-02-12 19:36:11 +01:00
{{> meta.html }}
2019-02-13 12:21:20 +01:00
<body>
2019-02-12 19:36:11 +01:00
{{> header.html }}
2019-02-12 15:43:11 +01:00
2019-02-13 12:21:20 +01:00
<div id="content">
2019-02-12 20:04:07 +01:00
{{#if Data.bild }}
2019-02-13 12:21:20 +01:00
<img src="{{ Data.bild }}" id="dataImg">
2019-02-12 20:04:07 +01:00
{{/if}}
2019-02-12 15:43:11 +01:00
{{{ Body }}}
</div>
2019-02-12 19:36:11 +01:00
{{> footer.html }}
2019-02-12 15:43:11 +01:00
</body>
</html>