pongo2 as template engine

This commit is contained in:
Sebastian Frank
2019-02-14 13:46:33 +01:00
parent aeb7517473
commit 4df0b5e31f
16 changed files with 142 additions and 134 deletions

View File

@@ -0,0 +1,17 @@
{% 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 %}