{% extends "layout/navigation.html" %} {* vim: set et ai ts=2 sw=2 enc=utf-8: *} {% block "title" %}{% trans "View Thread" %} - {{ thread.title|e }}{% endblock %} {% block "html/head" %} {% endblock %} {% block "trace" %} {% for item in pathbar %} » {{ item.name|e }} {% endfor %} {% endblock %} {% block "content" %}

{{ thread.title|e }}

{% trans "Created by" %} {% if thread.author.registered %} {{ thread.author.username|e }} {% else %} {{ thread.author.username|e }} {% endif %} {% trans "on" %} {{ thread.timestamp|datetimeformat }} ({{ thread.timestamp|timedeltaformat }})
{% define posts thread.posts %} {% include "partial/tree.html" %}
{% define post thread.post %} {% include "partial/post.html" %}
{% endblock %}