{% extends 'blog/base.html' %}{% load i18n wagtailcore_tags %}
{% block content %}
{% trans 'Latest articles will appear here.' %} {{ page.description }}
{% trans 'Published categories will appear here.' %}
{{ index.title }}
{{ index.content }}
{% trans 'Latest articles' %}
{% for article in articles %}
{% include 'blog/components/article.html' %}
{% empty %}
{% trans 'No articles' %}
{% trans 'Categories' %}
{% for page in index.get_children.specific %}
{{ page.title }}
{% trans 'No categories' %}