{% extends 'base.html' %} {% load static i18n %} {% load humanize thumbnail %} {% block title %} {% trans 'Articles' %} {% endblock %} {% block head %} {% endblock head %} {% block content %}
{% for article in articles %}
{% thumbnail article.image "750x300" as im %} {% trans 'Featured Image' %} {% empty %} Card image cap {% endthumbnail %}

{{ article.title|title }}

{{ article.get_markdown|safe|truncatechars:150 }}

{% trans 'Read More' %} →
{% empty %}

{% trans 'There is no published article yet' %}. {% trans 'Be the first one to publish one' %}!

{% endfor %} {% if is_paginated %} {% endif %}
{% if request.user.is_authenticated %} {% endif %}
{% trans 'Cloud tag' %}
{% for tag, count in popular_tags %} {{ count }} {{ tag }} {% endfor %}
{% endblock content %}