templates/Default/odpage/odpage.html.twig line 1

Open in your IDE?
  1. {% extends "Default/layout.html.twig" %}
  2. {% set transParams = seoOd.transParams %}
  3. {% set page_meta_description  = seoOd.block.meta.description | default((transport~'.odpage.metadescription') | trans(transParams)) %}
  4. {% set page_title =
  5.         cheapest
  6.         ? seoOd.block.meta.title | default((transport~'.odpage.metatitle.cheapest') | trans(transParams))
  7.         : seoOd.block.meta.title | default((transport~'.odpage.metatitle') | trans(transParams)) %}
  8. {% set page_class = 'page-fromatob' %}
  9. {% block page_content %}
  10.     {% include 'Default/_engine_form.html.twig'
  11.         with {
  12.             'h1' : seoOd.block.meta.h1 | default(noIndex ? '' : (transport~'.odpage.engineform.h1') | trans(transParams)),
  13.             'h2' : seoOd.block.meta.h2 | default(noIndex ? '' : (seoOd.stat ? (transport~'.odpage.engineform.h2') : (transport~'.odpage.metadescription')) | trans(transParams))
  14.         }
  15.     %}
  16.     <div id="result-view-ui" >
  17.         <div id="result-view-ui-prices"></div>
  18.         <div id="result-view-ui-filter"></div>
  19.     </div>
  20.     {% include 'Default/odpage/_summary.html.twig' with {'transport' : transport, 'seoOd' : seoOd} %}
  21.     {% if not noIndex %}
  22.         {% if seoOd.block %}
  23.             {{ seoOd.block | cb_blockdisplay }}
  24.         {% endif %}
  25.         {% if (transport~'.odpage.spinning.enabled') | cb_transNoFallback  or app.request.get('forcespinning') %} {# forcespinning for our internal tool, to check page#}
  26.             {% include "Default/odpage/_spinning.html.twig" with {'transport' : transport} %}
  27.         {% else%}
  28.             {% include "Default/odpage/_gapfill.html.twig" with {'transport' : transport} %}
  29.         {% endif %}
  30.         {% if infostop.block.content is not empty or infostop.imgs is not empty %}
  31.             {% if infostop.block.content starts with '<section' %}
  32.                 {# Whole section only used by Ski stations #}
  33.                 {{ infostop.block.content | raw }}
  34.             {% else %}
  35.                 <section class="panel">
  36.                     <h2 class="panel-heading">{{ 'bus.odpage.gapfill.h2.destination' | trans({'%A%': depStop.name, '%B%': arrStop.name}) }}</h2>
  37.                     {% if infostop.block.content is not empty %}
  38.                         <div class="panel-body">
  39.                             {{ infostop.block.content | raw }}
  40.                         </div>
  41.                     {% endif %}
  42.                     {% if infostop.imgs is not empty %}
  43.                         <div class="panel-body-centered">
  44.                             {% for img in infostop.imgs %}
  45.                                 <img src="{{ asset('bundles/static/picture_stop/'~img.id~'_'~img.description | cb_slug | lower  ~'_240x180.jpg') }}" alt="{{ img.description }}, {{ arrStop.name }}" height="160">
  46.                             {% endfor %}
  47.                         </div>
  48.                     {% endif %}
  49.                 </section>
  50.             {% endif %}
  51.         {% endif %}
  52.         {{ infostop.block is defined ? infostop.block | cb_blockdisplay(false) : ''}}
  53.     {% endif %}
  54.     {% if seoOd.prices | length > 0 %}
  55.         <section class="panel" id="last-prices">
  56.             <h2 class="panel-heading">{{ (transport~'.odpage.lastsearch.h1') | trans({'%A%': depStop.name, '%B%': arrStop.name}) }}</h2>
  57.             {% include "Default/_prices.html.twig" with {'prices':seoOd.prices} %}
  58.         </section>
  59.     {% endif %}
  60.     {% if popularRoutes | length > 0 %}
  61.         <section class="panel">
  62.             <h2 class="panel-heading">{{ 'all.odpage.popularroutes.title' | trans(transParams)}}</h2>
  63.             <div class="panel-body">
  64.                 <div class="row">
  65.                     {% for links in popularRoutes | batch(popularRoutes|length/4) %}
  66.                     <div class="col-md-3">
  67.                         <ul class="list-unstyled">
  68.                             {% for link in links %}
  69.                                 <li><a href="{{ link.url }}">{{ link.label }}</a></li>
  70.                             {% endfor %}
  71.                         </ul>
  72.                     </div>
  73.                     {% endfor %}
  74.                 </div>
  75.             </div>
  76.         </section>
  77.     {% endif %}
  78. {%endblock %}