2021-04-29 20:51:13 +01:00
|
|
|
{% extends 'stdgrid.html.twig' %}
|
2020-03-12 17:59:13 +00:00
|
|
|
|
2020-07-26 16:05:07 +01:00
|
|
|
{% block title %}Welcome!{% endblock %}
|
|
|
|
|
|
|
|
{% block stylesheets %}
|
|
|
|
{{ parent() }}
|
2021-07-20 13:18:57 +01:00
|
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/network/public.css') }}">
|
2020-07-26 16:05:07 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2021-07-23 13:04:04 +01:00
|
|
|
|
2021-08-09 13:25:08 +01:00
|
|
|
{# Backwards compatibility with hAtom 0.1 #}
|
|
|
|
<div class="timeline">
|
|
|
|
<main 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'], 'have_user': have_user, 'replies': conversation['replies']} only %}
|
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<div id="empty-notes"><h1>{% trans %}No notes here.{% endtrans %}</h1></div>
|
|
|
|
{% endif %}
|
|
|
|
</main>
|
2020-08-20 04:26:12 +01:00
|
|
|
</div>
|
2021-08-09 13:25:08 +01:00
|
|
|
|
2020-07-28 17:08:08 +01:00
|
|
|
{% endblock body %}
|
2020-07-26 16:05:07 +01:00
|
|
|
|
|
|
|
{% block javascripts %}{% endblock %}
|