Voyage

{% for post_id, post in posts.items() %}
{% if post.subject %} {{ post.subject }} {% endif %} {{ post.name }} {% if post.trip_code %} {{ post.trip_code }} {% endif %} {{ post.time.strftime('%Y-%m-%d %H:%M') }} No.{{ post.id }} {% if backlinks.get(post.id) %} {% for link in backlinks[post.id] %} >>{{ link }} {% endfor %} {% endif %}
{% for line in post.body.splitlines() %} {% if line.startswith('>') %} {{ line|quotelink(post) }}
{% else %} {{ line|quotelink(post) }}
{% endif %} {% endfor %}
{% endfor %}