mark2web/example/templates/base_multipart.html
2019-02-14 13:46:33 +01:00

17 lines
372 B
HTML

{% extends 'base.html' %}
{% block content %}
<div id="content">
{% if Data.bild %}
<img src="{{ Data.bild }}" id="dataImg">
{% endif %}
{{ BodyParts.0 }}
{% if BodyParts.1 %}
<div class="info">{{ BodyParts.1 }}</div>
{% endif %}
</div>
{% endblock content %}