{% extends "base.html" %}{% from "partials/paper_card.html" import render_card %} {% block title %}{{ page_title }} — HF Daily Papers{% endblock %} {% block content %} {# 搜索表单 #} {% if tag %} {% endif %} {# 模式切换 #} {% if chroma_enabled %} 关键词 语义搜索 {% endif %} 搜索 {# 标签筛选 #} {% if all_tags %} 标签: 全部 {% for t in all_tags %} {{ t }} {% endfor %} {% endif %} {% if query or tag %} {# 搜索结果元信息 #} 找到 {{ total }} 条结果{% if mode == 'semantic' %}(语义模式){% endif %} 相关性 | 日期 {% if results %} {% for paper in results %} {{ render_card(paper, snippets=snippets, distances=distances, variant="search") }} {% endfor %} {# 分页 #} {% if total_pages > 1 %} {% if page > 1 %} ← 上一页 {% endif %} {{ page }} / {{ total_pages }} {% if page < total_pages %} 下一页 → {% endif %} {% endif %} {% else %} 没有找到匹配的论文 试试其他关键词或标签 {% endif %} {% endif %} {% endblock %}
没有找到匹配的论文
试试其他关键词或标签