kde-playground/kdepim/kjots/themes/other/template.html

14 lines
243 B
HTML
Raw Normal View History

<html>
{% for entity in entities %}
<div>
{% if entity.isBook %}
{% include "booktemplate.html" %}
{% else %}
{% if entity.isPage %}
{% include "pagetemplate.html" %}
{% endif %}
{% endif %}
</div>
{% endfor %}
</html>