{% extends 'stdgrid.html.twig' %} {% block meta %} {{ parent() }} {% endblock %} {% block title %}Welcome!{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block header %} {{ parent() }} {% endblock %} {% block left %} {{ parent() }} {% endblock %} {% block body %}
{% if notes is defined and notes is not empty %} {% for note in notes %} {% set id = note.getId() - 1 %} {% include '/note/view.html.twig' with {'note': note, 'have_user': have_user} only %} {% endfor %} {% else %}

This is {{ user_nickname }}'s reverse favorites stream, but nobody favored {{ user_nickname }}'s notes yet.

{% endif %}
{% endblock body %} {% block javascripts %}{% endblock %}