<!-- Table --><div class="table-responsive"> <table class="table table-hover table-striped"> <thead class=""> <tr> <th>Datum</th> <th>Veranstaltung</th> </tr> </thead> <tbody> {% for event in events %} {% set slug = event.slug | replace({'/':''}) %} <tr> <td>{{ event.startDate|date('d.m.Y H:i') }} </td> <td><a href="{{ path('event_show_single', {slug: slug} + templateVars) }}">{{ event.title }}</a> </td> </tr> {% endfor %} </tbody> </table></div>