{% extends 'base.html' %} {% load i18n %} {% block title %}{{ section_label }} - {{ site_settings.brand_name }}{% endblock %} {% block content %} {{ section_label }} {% if articles %} {% for article in articles %} {% include 'partials/article_card.html' with article=article article_type=article_type %} {% endfor %} {% if articles.has_other_pages %} {% if articles.has_previous %} ← {% trans "上一页" %} {% endif %} {% trans "第" %} {{ articles.number }} {% trans "页" %} / {{ articles.paginator.num_pages }} {% trans "页" %} {% if articles.has_next %} {% trans "下一页" %} → {% endif %} {% endif %} {% else %} {% trans "暂无内容" %} {% endif %} {% endblock %}
{% trans "暂无内容" %}