{% extends "Default/layout.html.twig" %}
{% set transParams = seoOd.transParams %}
{% set page_meta_description = seoOd.block.meta.description | default((transport~'.odpage.metadescription') | trans(transParams)) %}
{% set page_title =
cheapest
? seoOd.block.meta.title | default((transport~'.odpage.metatitle.cheapest') | trans(transParams))
: seoOd.block.meta.title | default((transport~'.odpage.metatitle') | trans(transParams)) %}
{% set page_class = 'page-fromatob' %}
{% block page_content %}
{% include 'Default/_engine_form.html.twig'
with {
'h1' : seoOd.block.meta.h1 | default(noIndex ? '' : (transport~'.odpage.engineform.h1') | trans(transParams)),
'h2' : seoOd.block.meta.h2 | default(noIndex ? '' : (seoOd.stat ? (transport~'.odpage.engineform.h2') : (transport~'.odpage.metadescription')) | trans(transParams))
}
%}
<div id="result-view-ui" >
<div id="result-view-ui-prices"></div>
<div id="result-view-ui-filter"></div>
</div>
{% include 'Default/odpage/_summary.html.twig' with {'transport' : transport, 'seoOd' : seoOd} %}
{% if not noIndex %}
{% if seoOd.block %}
{{ seoOd.block | cb_blockdisplay }}
{% endif %}
{% if (transport~'.odpage.spinning.enabled') | cb_transNoFallback or app.request.get('forcespinning') %} {# forcespinning for our internal tool, to check page#}
{% include "Default/odpage/_spinning.html.twig" with {'transport' : transport} %}
{% else%}
{% include "Default/odpage/_gapfill.html.twig" with {'transport' : transport} %}
{% endif %}
{% if infostop.block.content is not empty or infostop.imgs is not empty %}
{% if infostop.block.content starts with '<section' %}
{# Whole section only used by Ski stations #}
{{ infostop.block.content | raw }}
{% else %}
<section class="panel">
<h2 class="panel-heading">{{ 'bus.odpage.gapfill.h2.destination' | trans({'%A%': depStop.name, '%B%': arrStop.name}) }}</h2>
{% if infostop.block.content is not empty %}
<div class="panel-body">
{{ infostop.block.content | raw }}
</div>
{% endif %}
{% if infostop.imgs is not empty %}
<div class="panel-body-centered">
{% for img in infostop.imgs %}
<img src="{{ asset('bundles/static/picture_stop/'~img.id~'_'~img.description | cb_slug | lower ~'_240x180.jpg') }}" alt="{{ img.description }}, {{ arrStop.name }}" height="160">
{% endfor %}
</div>
{% endif %}
</section>
{% endif %}
{% endif %}
{{ infostop.block is defined ? infostop.block | cb_blockdisplay(false) : ''}}
{% endif %}
{% if seoOd.prices | length > 0 %}
<section class="panel" id="last-prices">
<h2 class="panel-heading">{{ (transport~'.odpage.lastsearch.h1') | trans({'%A%': depStop.name, '%B%': arrStop.name}) }}</h2>
{% include "Default/_prices.html.twig" with {'prices':seoOd.prices} %}
</section>
{% endif %}
{% if popularRoutes | length > 0 %}
<section class="panel">
<h2 class="panel-heading">{{ 'all.odpage.popularroutes.title' | trans(transParams)}}</h2>
<div class="panel-body">
<div class="row">
{% for links in popularRoutes | batch(popularRoutes|length/4) %}
<div class="col-md-3">
<ul class="list-unstyled">
{% for link in links %}
<li><a href="{{ link.url }}">{{ link.label }}</a></li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
</div>
</section>
{% endif %}
{%endblock %}