{% extends 'base.html' %} {% from 'macros.html' import show_thread_short %} {% block title%} UCHAN {% endblock %} {% block body%} {% if debug %}

!UCHAN DEBUG MODE!

{% else %}

UCHAN

{% endif %}
Create board | Rules | Help

Boards:

{% if boards|length > 0 %} {% for board in boards %} {% endfor %}
name last activity
/{{board.name}} {{board.last_activity_()}}
...
See all
{% else %}

Boards not found. Create a new one

{% endif %}

Latest threads:

{% if last_threads | length > 0%} {% for thread in last_threads %} {{show_thread_short(thread, custom_format)}} {% endfor %} {% endif %}

Latest posts:

{% if last_posts | length > 0 %} {% for post in last_posts %}
{{post.creation_date_()}} /{{post.thread.board.name}} Post №{{post.id}} [Open in thread]
{{custom_format(post.message) | safe}}
{% endfor %} {% else %}

Posts not found

{% endif %} {% endblock %}