mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-25 03:12:52 +00:00
13 lines
243 B
HTML
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>
|