templates/network/profile/racetracks/listing.html.twig line 1

Open in your IDE?
  1. {% extends 'page.html.twig' %}
  2. {% block content %}
  3.   {% include 'network/profile/components/hero.html.twig' %}
  4.   <section class="container flex items-center justify-between mt-12">
  5.     <h3 class="text-lg font-medium uppercase md:text-xl font-headline">
  6.       {{ 'racetrack.list.filter'|trans }}
  7.     </h3>
  8.     {{ form_start(filter, { attr: { 'data-controller': 'autosubmit' } }) }}
  9.     <div class="my-4 w-fit">
  10.       {{ form_row(filter.country) }}
  11.     </div>
  12.     {{ form_end(filter) }}
  13.   </section>
  14.   {% include 'network/profile/components/listing.html.twig' with { listing: racetracks } %}
  15.   <div class="grid my-12 mb-20 place-items-center">
  16.     {% include 'component/pagination.html.twig' with { pagination: racetracks } %}
  17.   </div>
  18. {% endblock %}