{% extends 'blog/base.html' %}{% load i18n wagtailcore_tags %} {% block content %}
{% include 'blog/components/breadcrumbs.html' %}

{{ index.title }}

{{ index.content }}

{% trans 'Latest articles' %}

    {% for article in articles %} {% include 'blog/components/article.html' %} {% empty %}
  1. {% trans 'No articles' %}

    {% trans 'Latest articles will appear here.' %}

  2. {% endfor %}

{% trans 'Categories' %}

    {% for page in index.get_children.specific %}
  1. {% trans 'Read' %}

    {{ page.title }}

    {{ page.description }}

  2. {% empty %}
  3. {% trans 'No categories' %}

    {% trans 'Published categories will appear here.' %}

  4. {% endfor %}
{% endblock %}