22 lines
419 B
HTML
22 lines
419 B
HTML
<html>
|
|
{{> meta.html }}
|
|
<body>
|
|
{{> header.html }}
|
|
|
|
<div id="content">
|
|
|
|
{{#if Data.bild }}
|
|
<img src="{{ Data.bild }}" id="dataImg">
|
|
{{/if}}
|
|
|
|
{{{ BodyParts.[0] }}}
|
|
|
|
{{#if BodyParts.[1] }}
|
|
<div class="info">{{{ BodyParts.[1] }}}</div>
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
{{> footer.html }}
|
|
</body>
|
|
</html> |