{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "搜索" %} - {{ site_settings.brand_name }}{% endblock %} {% block content %}

{% trans "搜索" %}

{% if warning == 'too_short' %}

{% trans "请输入至少 2 个字符" %}

{% endif %} {% if query and not warning %}

{% trans "搜索" %} "{{ query }}" {% trans "的结果" %}

{% endif %} {% if articles %}

{% trans "文章" %} ({{ articles.paginator.count }})

{% for article in articles %} {% include 'partials/article_card.html' with article=article article_type=article.article_type %} {% endfor %}
{% endif %} {% if persons %}

{% trans "人物" %} ({{ persons.paginator.count }})

{% for person in persons %} {% include 'partials/person_card.html' %} {% endfor %}
{% endif %} {% if not articles and not persons and query and not warning %}

{% trans "未找到匹配结果" %}

{% endif %} {% if not query %}

{% trans "请输入关键词开始搜索" %}

{% endif %}
{% endblock %}