{% load i18n %}

{% trans "Recent articles" %}

{% if recent_blogs %}
{% for blog in recent_blogs %}
{% include "blog/partials/blog_meta.html" with blog=blog only %}

{{ blog.title }}

{% endfor %}
{% else %}

{% trans "More articles will appear here when they are published." %}

{% endif %}