gnu-social/components/Tag/templates/note_tag_feed.html.twig

13 lines
285 B
Twig

{% extends 'base.html.twig' %}
{% import '/cards/note/view.html.twig' as noteView %}
{% block body %}
{% for note in results %}
{% block current_note %}
{{ noteView.macro_note(note) }}
{% endblock current_note %}
{% endfor %}
{{ "Page: " ~ page }}
{% endblock %}