{% extends 'base.html.twig' %} {% block stylesheets %} {{ parent() }} {% endblock stylesheets %} {% block body %} {% if tag_name is defined and tag_name is not null %} {% if tag_name is instanceof('string') %}

{% trans %}Actors with tag: %tag_name%{% endtrans %}

{% else %} {% set tags = tag_name|join(',') %} {# TODO Not ideal, hard to translate #}

{% trans %}Actors with tags: %tags%{% endtrans %}

{% endif %} {% endif %} {% for pinned in handle_event('AddPinnedFeedContent', app.request) %} {% include pinned['template'] with { 'actor_tags': pinned['vars']} only %} {% endfor %} {% for actor in results %} {% block profile_view %}{% include 'cards/profile/view.html.twig' %}{% endblock profile_view %} {% endfor %}
{{ "Page: " ~ page }}
{% endblock %}