{% extends "base.html" %} {% block title %}{{ page_title }} — HF Daily Papers{% endblock %} {% block content %}
{# 搜索表单 #}
{% if tag %} {% endif %}
{# 标签筛选 #} {% if all_tags %}
标签: 全部 {% for t in all_tags %} {{ t }} {% endfor %}
{% endif %} {% if query or tag %} {# 搜索结果元信息 #}
找到 {{ total }} 条结果
{% if results %}
{% for paper in results %}
{% if snippet and snippet.abstract %}

{{ snippet.abstract | safe }}

{% elif paper.summary and paper.summary.one_line %}

{{ paper.summary.one_line }}

{% elif paper.abstract %}

{{ paper.abstract[:200] }}{% if paper.abstract|length > 200 %}…{% endif %}

{% endif %}
{{ paper.authors|map(attribute='name')|join(', ')|truncate(80) }} {{ paper.paper_date }}
{% for t in paper.tags[:5] %} {{ t.tag }} {% endfor %}
{% endfor %}
{# 分页 #} {% if total_pages > 1 %} {% endif %} {% else %}

没有找到匹配的论文

试试其他关键词或标签

{% endif %} {% endif %}
{% endblock %}