{% extends "base.html" %} {% block title %}/{{ board }}/ catalog — 4ch-archive{% endblock %} {% block boardtitle %}{% set view = 'catalog' %}{% include "_boardhead.html" %}{% endblock %} {% block body %}
Sort: Search:
{% for t in threads %}
{% if t.thumb_url %}{% endif %} R:{{ t.reply_count }} / I:{{ t.image_count }}{% if t.is_404 %} [404]{% endif %} {% if t.purge_hint %}{{ t.purge_hint }}{% endif %} {% if t.subject %}{{ t.subject }}{% endif %} {{ (t.op_text or "")[:220] }}{% if t.op_text and t.op_text|length > 220 %}…{% endif %}
{% endfor %}
{% if not threads %}

No threads yet.

{% endif %}
{% if page > 1 %}Previous{% endif %} {% set has_next = threads|length == 50 %} {% for n in range([1, page-3]|max, page + (2 if has_next else 1)) %} {% if n == page %}[{{ n }}]{% else %}[{{ n }}]{% endif %} {% endfor %} {% if has_next %}Next{% endif %}
{% endblock %}