Added themes.
[wolnelektury.git] / wolnelektury / templates / catalogue / book_text.html
index d733555..6c505e3 100644 (file)
@@ -14,7 +14,7 @@
         <div id="menu">
             <ul>
                 <li><a href="#toc">Spis treÅ›ci</a></li>
-                <li><a href="#">Motywy</a></li>
+                <li><a href="#themes">Motywy</a></li>
             </ul>
         </div>
         <div id="header">
                 <a href="/"><img src="/media/img/logo.png" alt="WolneLektury.pl - logo" /></a>
             </div>
         </div>
+        <div id="themes">
+            <ol>
+                {% for theme, fragments in book_themes %}
+                <li>{{ theme }}:
+                    {% for fragment in fragments %}
+                        <a href="#m{{ fragment.anchor }}">{{ forloop.counter }}</a>
+                    {% endfor %}
+                <li>
+                {% endfor %}
+            </ol>
+        </div>
         {{ book.html_file.read|safe }}
     </body>
 </html>