Listing 27.1. Zarys widoku akcji index
...
{% for entity in entities %}
    <li>
        <a href="{{ path('song_show', { 'slug': entity.slug }) }}">
                {{ entity }}
        </a>
    </li>
{% endfor %}
...