{% extends "base.html" %} {% block title %}{{ page_title }} — HF Daily Papers{% endblock %} {% block content %}
{% if prev_day %} ← 前一天 {% endif %}

{{ current_date }}

{% if next_day <= today %} 后一天 → {% endif %} 今日
{% if papers %}
{% for paper in papers %} {% include "partials/paper_card.html" %} {% endfor %}
{% else %}

📭 当天暂无论文数据

试试浏览其他日期,或使用管理接口抓取数据

{% endif %}
有数据的日期: {% for d in available_dates[:10] %} {{ d }} {% endfor %}
{% endblock %}