forked from mirrors/bookwyrm
15 lines
387 B
HTML
15 lines
387 B
HTML
{% extends 'feed/feed_layout.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block panel %}
|
|
<header class="block">
|
|
<a href="/#feed" class="button" data-back>
|
|
<span class="icon icon-arrow-left" aria-hidden="true"></span>
|
|
<span>{% trans "Back" %}</span>
|
|
</a>
|
|
</header>
|
|
|
|
{% include 'feed/thread.html' with status=status depth=0 max_depth=6 is_root=True direction=0 %}
|
|
|
|
{% endblock %}
|
|
|