nephila/djangocms-blog

View on GitHub
djangocms_blog/templates/djangocms_blog/plugins/latest_entries.html

Summary

Maintainability
Test Coverage
{% load i18n %}{% spaceless %}
<div class="plugin plugin-blog">
    <div class="blog-latest-entries">
    {% for post in posts_list %}
        {% include "djangocms_blog/includes/blog_item.html" with post=post image="true" TRUNCWORDS_COUNT=TRUNCWORDS_COUNT %}
    {% empty %}
    <p class="blog-empty">{% trans "No article found." %}</p>
    {% endfor %}
    </div>
</div>
{% endspaceless %}