File indexing completed on 2024-06-02 05:24:02

0001 <div>
0002 
0003 <h2><a href="#book_{{ entity.entityId }}" name="book_{{ entity.entityId }}">{{ entity.title }}</a></h2>
0004 <h3>{{ i18n_TABLE_OF_CONTENTS }}</h3>
0005 
0006 <div class="toc">
0007 {% include "book_toc_list.html" %}
0008 </div>
0009 
0010 <div>
0011 {% for entity in entity.entities %}
0012   <hr />
0013   {% if entity.isBook %}
0014     {% include "booktemplate.html" %}
0015   {% else %}
0016     {% if entity.isPage %}
0017       {% include "pagetemplate.html" %}
0018     {% endif %}
0019   {% endif %}
0020 {% endfor %}
0021 </div>
0022 </div>