{% extends "base.html" %} {% block title %}/{{ board }}/ — 4ch-archive{% endblock %} {% block boardtitle %}{% set view = 'index' %}{% include "_boardhead.html" %}{% endblock %} {% block body %}
{% for t in threads %}
{% if t.op %}{% with p = t.op, link_thread = True %}{% include "_post.html" %}{% endwith %}{% endif %} {% if t.omitted > 0 %}{{ t.omitted }} repl{{ 'y' if t.omitted == 1 else 'ies' }} omitted. Click here to view.{% endif %} {% for p in t.replies %}{% include "_post.html" %}{% endfor %}

{% endfor %}
{% if not threads %}

No threads yet.

{% endif %} {% set has_next = threads|length == 10 %}
{% if page > 1 %}Previous{% endif %} {% 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 %}