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

0001 <html>
0002 <head>
0003 <style>
0004 .breadcrumbs {
0005   margin-top : 10px;
0006 }
0007 p,pre,br{
0008   margin-top:0px;
0009   margin-bottom:0px;
0010 }
0011 ul{
0012   margin-top:12px;margin-bottom:12px;
0013 }
0014 </style>
0015 </head>
0016 <body>
0017 {% for entity in entities %}
0018 <div>
0019   {% if entity.isBook %}
0020     {% include "booktemplate.html" %}
0021   {% else %}
0022     {% if entity.isPage %}
0023       {% include "pagetemplate.html" %}
0024     {% endif %}
0025   {% endif %}
0026 </div>
0027 {% endfor %}
0028 </body>
0029 </html>