23 lines
856 B
Twig
23 lines
856 B
Twig
{% extends 'stdgrid.html.twig' %}
|
|
|
|
{% block title %}{{ 'Welcome! - Public Timeline' | trans }}{% endblock %}
|
|
|
|
{% block body %}
|
|
{# Backwards compatibility with hAtom 0.1 #}
|
|
<main class="timeline" tabindex="0" role="feed">
|
|
<div class="h-feed hfeed notes">
|
|
{% if notes is defined and notes is not empty %}
|
|
{% for conversation in notes %}
|
|
{% include '/note/view.html.twig' with {'note': conversation['note'], 'replies': conversation['replies']} only %}
|
|
<hr tabindex="0" title="{{ 'End of note and replies.' | trans }}">
|
|
{% endfor %}
|
|
{% else %}
|
|
<div id="empty-notes"><h1>{% trans %}No notes here.{% endtrans %}</h1></div>
|
|
{% endif %}
|
|
</div>
|
|
</main>
|
|
|
|
{% endblock body %}
|
|
|
|
{% block javascripts %}{% endblock %}
|