{% extends "base.html" %} {% block title %}{{ wiki_name }} - {{ t('home.title') }}{% endblock %} {% block content %}
{{ total }} {{ t('common.articles') }}
{{ categories|length }} {{ t('common.categories') }}

{{ t('home.recent') }}

{% if recent %}
    {% for a in recent %}
  • {{ a.title }}
  • {% endfor %}
{% else %}

{{ t('home.empty_articles') }}

{% endif %}

{{ t('home.categories') }}

{% if categories %}
    {% for cat, count in categories.items() %}
  • {{ cat }} {{ count }}
  • {% endfor %}
{% else %}

{{ t('home.empty_categories') }}

{% endif %}
{% endblock %}