{% extends "base.html" %}
-{% load catalogue_tags chunks %}
+{% load catalogue_tags chunks cache %}
 
 {% block bodyid %}main-page{% endblock %}
 
             {% if categories.theme %}
                 <h2>Motywy</h2>
                 <ul>
-                {% for theme in categories.theme %}
+                {% for theme in fragment_tags %}
                     <li><a href="{% catalogue_url theme %}">{{ theme }} ({{ theme.count }})</a></li>
                 {% endfor %}
                 </ul>                
     
     <div id="latest-blog-posts">
         <h2>AktualnoĆci z naszego bloga</h2>
+        {% cache 1800 latest-blog-posts %}
         {% latest_blog_posts "http://wolnepodreczniki.pl/feed/?s=Wolne%20Lektury" %}
+        {% endcache %}
     </div>
 {% endblock %}