{% extends "base.html" %} {% block title %}{{ thread.title }} — {{ bbs.site.name }}{% endblock %} {% block breadcrumb %} / {{ bbs.site.name }} / {{ board.name }} / {{ thread.title }} {% endblock %} {% block content %}
{{ thread.author.handle }}
{{ thread.created_at | datetime }} {% if g.user and g.user.did == thread.author.did %}
{% endif %} {% if g.user and g.user.did == bbs.identity.did and g.user.did != thread.author.did %}
{% endif %}

{{ thread.title }}

{{ thread.body }}

{% if thread.attachments %}
{% for att in thread.attachments %} [{{ att.name }}] {% endfor %}
{% endif %}

Loading replies...

{% if g.user %}
{% endif %} {% endblock %}