{% extends 'base.html.twig' %}
{% block head %}
<link rel="alternate" hreflang="en" href="https://gettohikes.com/en/articles"/>
<link rel="alternate" hreflang="fr" href="https://gettohikes.com/fr/articles"/>
<link rel="alternate" hreflang="pt" href="https://gettohikes.com/pt/articles"/>
<link rel="alternate" hreflang="de" href="https://gettohikes.com/de/articles"/>
<link rel="alternate" hreflang="pl" href="https://gettohikes.com/pl/articles"/>
<link rel="alternate" hreflang="x-default" href="https://gettohikes.com/en/articles"/>
{% if app.request.locale == 'en' %}
<link rel="canonical" href="https://gettohikes.com/en/articles"/>
{% endif %}
{% if app.request.locale == 'fr' %}
<link rel="canonical" href="https://gettohikes.com/fr/articles"/>
{% endif %}
{% if app.request.locale == 'pt' %}
<link rel="canonical" href="https://gettohikes.com/pt/articles"/>
{% endif %}
{% if app.request.locale == 'de' %}
<link rel="canonical" href="https://gettohikes.com/de/articles"/>
{% endif %}
{% if app.request.locale == 'pl' %}
<link rel="canonical" href="https://gettohikes.com/pl/articles"/>
{% endif %}
{% endblock %}
{% block title %}
{% if seo['meta-title'] %}
{{ seo['meta-title'] }}
{% endif %}
{% endblock %}
{% block meta_description %}
{% if seo['meta-desc'] %}
{{ seo['meta-desc'] }}
{% endif %}
{% endblock %}
{% block meta_keywords %}
{% if seo['meta-keywords'] %}
{{ seo['meta-keywords'] }}
{% endif %}
{% endblock %}
{% block meta_nofollow %}
{% if seo['nofollow'] %}noindex, nofollow
{% endif %}
{% endblock %}
{% block header %}
{% include './partials/secondaryHeader.html.twig' %}
{% endblock %}
{% block body %}
<div class="container inspirations-wrapper">
<div class="row px-4">
<nav aria-label="breadcrumb" class="px-0">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="/">{{ 'pages.breadcrumb.home'|trans }}</a>
</li>
<li class="breadcrumb-item active" aria-current="page">Travel Info</li>
</ol>
</nav>
</div>
<h1>Travel info</h1>
<div class="row px-4 px-lg-2">
<div class="col-12 col-lg-7">
<ul class="row inspirations mb-5">
{% for item in pages %}
<li class="col-12 inspirations-item">
<a href="{{ path('app_page_item', { '_locale': app.request.locale, slug: item.slug }) }}"></a>
<h2>{{ item.title }}</h2>
</li>
{% endfor %}
</ul>
<div class="pagination d-flex justify-content-center pb-5">
{{ knp_pagination_render(pages) }}
</div>
</div>
<div class="col-12 col-lg-5">
<img src="{{ absolute_url( asset('build/images/icons/Areeiro.svg') ) }}" alt="Areeiro">
</div>
</div>
</div>
{% endblock %}
{% block footer %}
{% include './partials/footer.html.twig' %}
{% endblock %}
{% block javascripts %}
{{ parent() }}
{% endblock %}