templates/pages/matches_overview.html.twig line 1

Open in your IDE?
  1. <script type="text/x-jsrender" id="match-list-item">
  2.     {# Match blok in javascript #}
  3.     {{ include('pages/partials/match_js_render.html.twig') }}
  4. </script>
  5. <script type="text/x-jsrender" id="no-results">
  6. <div class="component component_matches-month no-results">
  7.     <div class="row">
  8.         <div class="col-md-12 text-center search-no-results">
  9.             <h3>Helaas</h3>
  10.             <p>Er zijn op dit moment op onze website helaas geen wedstrijden beschikbaar die aan jouw zoekcriteria voldoen.</p>
  11.         </div>
  12.     </div>
  13. </div>
  14. </script>
  15. <div class="component component_matches-filter" data-component="MatchFilter">
  16.     <section id="filters" class="filters">
  17.         {{ form_start(form) }}
  18.         <div class="col d-flex flex-wrap pl-0 pr-0">
  19.             <div class="filter match-filter price flex-even">
  20.                 {{ form_widget(form.price, {'attr': {'class': 'select-select2-hide-search'}}) }}
  21.             </div>
  22.             <div class="filter match-filter month flex-even">
  23.                 {{ form_widget(form.date, {'attr': {'class': 'select-select2-hide-search'}}) }}
  24.             </div>
  25.             <div class="filter match-filter opponent flex-even">
  26.                 {{ form_widget(form.club, {'attr': {'class': 'select-select2'}}) }}
  27.             </div>
  28.             <div class="filter match-filter competition flex-even">
  29.                 {{ form_widget(form.competition, {'attr': {'class': 'select-select2'}}) }}
  30.             </div>
  31.         </div>
  32.         {{ form_end(form) }}
  33.     </section>
  34. </div>
  35. <div class="component component_matches component_matches-grid component_matches-overview">
  36.     <div id="match-list"></div>
  37.     <div class="row is-margin-top-30" id="matches-footer">
  38.         <div class="col-12 text-center" id="loader">
  39.             <img class="mt-5" src="{{ asset('vendor/contentbox/assetmanager/images/ajax.gif') }}"
  40.                  alt="{{ 'Loading'|trans }}">
  41.         </div>
  42.         <div class="col-12 text-center" id="load-more">
  43.             <button class="is-btn is-background-color-accent stroke">Laad <span>meer</span></button>
  44.         </div>
  45.     </div>
  46. </div>