File indexing completed on 2024-12-22 04:59:50

0001 <div>
0002 <table border="1" cellspacing="1" cellpadding="1" width="100%"><tr><td width="20%">
0003   <h2 style="color:blue;">{{ entity.title }}</h2>
0004 </td><td>
0005 <div>
0006 {% for entity in entity.entities %}
0007   {% if entity.isBook %}
0008     {% include "booktemplate.html" %}
0009   {% else %}
0010     {% if entity.isPage %}
0011       {% include "pagetemplate.html" %}
0012     {% endif %}
0013   {% endif %}
0014 {% endfor %}
0015 </div>
0016 </td></tr></table>
0017 </div>