mark2web/example/templates/mitBild.html

19 lines
451 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-12 15:43:11 +01:00
<body style="margin: 0; padding: 2;">
2019-02-12 19:36:11 +01:00
{{> header.html }}
2019-02-12 15:43:11 +01:00
2019-02-12 20:41:31 +01:00
<div style="padding: 20px; background-color: white;">
2019-02-12 20:04:07 +01:00
{{#if Data.bild }}
<img src="{{ Data.bild }}" style="float: right; margin-left: 20px; margin-bottom: 20px">
{{/if}}
2019-02-12 15:43:11 +01:00
{{{ Body }}}
2019-02-12 20:41:31 +01:00
<div style="clear: both;"></div>
2019-02-12 15:43:11 +01:00
</div>
2019-02-12 19:36:11 +01:00
{{> footer.html }}
2019-02-12 15:43:11 +01:00
</body>
</html>