2021-04-30 04:51:13 +09:00
|
|
|
{% extends 'stdgrid.html.twig' %}
|
2020-03-13 02:59:13 +09:00
|
|
|
|
2021-09-23 00:46:58 +09:00
|
|
|
{% block title %}{% if page_title is defined %}{{ page_title | trans }}{% endif %}{% endblock %}
|
2020-07-27 00:05:07 +09:00
|
|
|
|
|
|
|
{% block body %}
|
2021-08-09 21:25:08 +09:00
|
|
|
{# Backwards compatibility with hAtom 0.1 #}
|
2021-09-07 23:23:41 +09:00
|
|
|
<main class="timeline" tabindex="0" role="feed">
|
|
|
|
<div class="h-feed hfeed notes">
|
2021-08-09 21:25:08 +09:00
|
|
|
{% if notes is defined and notes is not empty %}
|
|
|
|
{% for conversation in notes %}
|
2021-09-18 15:27:17 +09:00
|
|
|
{% include '/note/view.html.twig' with {'note': conversation['note'], 'replies': conversation['replies']} only %}
|
2021-09-09 05:33:35 +09:00
|
|
|
<hr tabindex="0" title="{{ 'End of note and replies.' | trans }}">
|
2021-08-09 21:25:08 +09:00
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<div id="empty-notes"><h1>{% trans %}No notes here.{% endtrans %}</h1></div>
|
|
|
|
{% endif %}
|
2021-08-20 04:37:16 +09:00
|
|
|
</div>
|
|
|
|
</main>
|
2021-08-09 21:25:08 +09:00
|
|
|
|
2021-09-23 00:46:58 +09:00
|
|
|
{% endblock body %}
|