{% 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 %} {% endif %} {% else %}

{% trans "暂无内容" %}

{% endif %}
{% endblock %}