forked from GNUsocial/gnu-social
47 lines
1.7 KiB
Twig
47 lines
1.7 KiB
Twig
{% extends 'stdgrid.html.twig' %}
|
|
{% import '/cards/note/view.html.twig' as noteView %}
|
|
|
|
{% block title %}{% if page_title is defined %}{{ page_title | trans }}{% endif %}{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
{{ parent() }}
|
|
<link rel="stylesheet" href="{{ asset('assets/default_theme/css/pages/feeds.css') }}" type="text/css">
|
|
{% endblock stylesheets %}
|
|
|
|
{% block body %}
|
|
{% if notes is defined and notes is not empty %}
|
|
<header class="feed-header">
|
|
{% if page_title is defined %}
|
|
<h1>{{ page_title | trans }}</h1>
|
|
{% endif %}
|
|
<nav class="feed-actions">
|
|
{% for block in handle_event('AddFeedActions', app.request) %}
|
|
{{ block | raw }}
|
|
{% endfor %}
|
|
</nav>
|
|
</header>
|
|
{% endif %}
|
|
|
|
{# Backwards compatibility with hAtom 0.1 #}
|
|
<main class="feed" tabindex="0" role="feed">
|
|
<div class="h-feed hfeed notes">
|
|
{% if notes is defined and notes is not empty %}
|
|
{% for conversation in notes %}
|
|
{% block current_note %}
|
|
{% if conversation is instanceof('array') %}
|
|
{{ noteView.macro_note(conversation['note'], conversation['replies']) }}
|
|
{% else %}
|
|
{{ noteView.macro_note(conversation) }}
|
|
{% endif %}
|
|
<hr tabindex="0" title="{{ 'End of note and replies.' | trans }}">
|
|
{% endblock current_note %}
|
|
{% endfor %}
|
|
{% else %}
|
|
<div class="feed-empty">
|
|
{{ icon('logo', 'icon feed-background') | raw }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</main>
|
|
{% endblock body %}
|