mark2web/example/templates/mitBild.html

22 lines
419 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-13 19:14:23 +01:00
{{{ BodyParts.[0] }}}
{{#if BodyParts.[1] }}
<div class="info">{{{ BodyParts.[1] }}}</div>
{{/if}}
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>