{# ───────────── unranked ───────────── #}
{% if not unranked %}

No unranked papers — switch to the browse arXiv tab to import some.

{% else %}
{% for p in unranked %}
{% with paper = p, tab = "unranked" %}{% include "_bookmark_btn.html" %}{% endwith %}

{{ p.authors[:6] | join(", ") }}{% if p.authors|length > 6 %}, et al.{% endif %}

{{ p.categories | join(" · ") }}

{{ p.abstract | latex }}

{% endfor %}
{% endif %}
{# ───────────── ranked ───────────── #}
{% if not ranked %}

No ranked papers yet. Pick unranked papers and click "rank selected".

{% else %}
{% for score, paper in ranked %}
{% with tab = "ranked" %}{% include "_bookmark_btn.html" %}{% endwith %}
{{ score.score | round | int }}
{% for n in range(11) %}

{{ paper.authors[:6] | join(", ") }}{% if paper.authors|length > 6 %}, et al.{% endif %}

{{ paper.categories | join(" · ") }}

{{ paper.abstract | latex }}

{{ score.reason }}

ranked {{ score.updated_at | timeago }}
{% endfor %} {% endif %}
{# ───────────── bookmarked ───────────── #}
{% if not bookmarked %}

No bookmarks yet — tap the bookmark on any paper to save it here.

{% else %} {% for paper in bookmarked %} {% set s = scores.get(paper.id) %} {% set voted = paper.id in votes %}
{% with tab = "bookmarked" %}{% include "_bookmark_btn.html" %}{% endwith %} {% if s or voted %}
{% if s %}
{{ s.score | round | int }}
{% endif %} {% if voted %}
{{ votes[paper.id] }}
{% endif %}
{% endif %}
{{ paper.title | latex }}

{{ paper.authors[:6] | join(", ") }}{% if paper.authors|length > 6 %}, et al.{% endif %}

{{ paper.categories | join(" · ") }}

{{ paper.abstract | latex }}

{% if s %}

{{ s.reason }}

{% endif %}
{% endfor %} {% endif %}