{% if recent_posts %}
<h2>{% trans "Recent Posts" %}</h2>
{% for recent_post in recent_posts %}
+{% if settings.BLOG_USE_FEATURED_IMAGE and recent_post.featured_image %}
+ {% block recent_post_list_post_featured_image %}
+ <a href="{{ recent_post.get_absolute_url }}">
+ <img class="img-thumbnail pull-left" src="{{ MEDIA_URL }}{% thumbnail recent_post.featured_image 90 90 %}">
+ </a>
+ {% endblock %}
+ {% endif %}
<h3><a href="{{ recent_post.get_absolute_url }}"
>{{ recent_post.title }}</a></h3>
{% if recent_post.categories %}
{{ recent_post.categories. }}
{% endif %}
- {% if settings.BLOG_USE_FEATURED_IMAGE and recent_post.featured_image %}
- {% block recent_post_list_post_featured_image %}
- <a href="{{ recent_post.get_absolute_url }}">
- <img class="img-thumbnail pull-left" src="{{ MEDIA_URL }}{% thumbnail recent_post.featured_image 90 90 %}">
- </a>
- {% endblock %}
- {% endif %}
+
</div><!-- /recent-summary -->
{% endfor %}
{% endif %}