kde-playground/kdepim/kjots/themes/other/template.html
2015-04-14 21:49:29 +00:00

13 lines
243 B
HTML

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