You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
491 B

{% load i18n %}{% spaceless %}
<div class="plugin plugin-blog">
<ul class="blog-latest-entries list-unstyled plugin-blog-category-{{ category }}">
{% for post in posts_list %}
<li>
<a href="{{ post.get_absolute_url }}">{{ post.title }}</a>
<p class="date">{{ post.date_published|date:"DATE_FORMAT" }}</p>
</li>
{% empty %}
<li class="blog-empty">{% trans "No article found." %}</li>
{% endfor %}
</ul>
</div>
{% endspaceless %}