templates/main/articleList.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block head %}
  3.     <link rel="alternate" hreflang="en" href="https://gettohikes.com/en/articles"/>
  4.     <link rel="alternate" hreflang="fr" href="https://gettohikes.com/fr/articles"/>
  5.     <link rel="alternate" hreflang="pt" href="https://gettohikes.com/pt/articles"/>
  6.     <link rel="alternate" hreflang="de" href="https://gettohikes.com/de/articles"/>
  7.     <link rel="alternate" hreflang="pl" href="https://gettohikes.com/pl/articles"/>
  8.     <link rel="alternate" hreflang="x-default" href="https://gettohikes.com/en/articles"/>
  9.     {% if app.request.locale == 'en' %}
  10.         <link rel="canonical" href="https://gettohikes.com/en/articles"/>
  11.     {% endif %}
  12.     {% if app.request.locale == 'fr' %}
  13.         <link rel="canonical" href="https://gettohikes.com/fr/articles"/>
  14.     {% endif %}
  15.     {% if app.request.locale == 'pt' %}
  16.         <link rel="canonical" href="https://gettohikes.com/pt/articles"/>
  17.     {% endif %}
  18.     {% if app.request.locale == 'de' %}
  19.         <link rel="canonical" href="https://gettohikes.com/de/articles"/>
  20.     {% endif %}
  21.     {% if app.request.locale == 'pl' %}
  22.         <link rel="canonical" href="https://gettohikes.com/pl/articles"/>
  23.     {% endif %}
  24. {% endblock %}
  25. {% block title %}
  26.     {% if seo['meta-title'] %}
  27.         {{ seo['meta-title'] }}
  28.     {% endif %}
  29. {% endblock %}
  30. {% block meta_description %}
  31.     {% if seo['meta-desc'] %}
  32.         {{ seo['meta-desc'] }}
  33.     {% endif %}
  34. {% endblock %}
  35. {% block meta_keywords %}
  36.     {% if seo['meta-keywords'] %}
  37.         {{ seo['meta-keywords'] }}
  38.     {% endif %}
  39. {% endblock %}
  40. {% block meta_nofollow %}
  41.     {% if seo['nofollow'] %}noindex, nofollow
  42.     {% endif %}
  43. {% endblock %}
  44. {% block header %}
  45.     {% include './partials/secondaryHeader.html.twig' %}
  46. {% endblock %}
  47. {% block body %}
  48.     <div class="container inspirations-wrapper">
  49.         <div class="row px-4">
  50.             <nav aria-label="breadcrumb" class="px-0">
  51.                 <ol class="breadcrumb">
  52.                     <li class="breadcrumb-item">
  53.                         <a href="/">{{ 'pages.breadcrumb.home'|trans }}</a>
  54.                     </li>
  55.                     <li class="breadcrumb-item active" aria-current="page">Travel Info</li>
  56.                 </ol>
  57.             </nav>
  58.         </div>
  59.         <h1>Travel info</h1>
  60.         <div class="row px-4 px-lg-2">
  61.             <div class="col-12 col-lg-7">
  62.                 <ul class="row inspirations mb-5">
  63.                     {% for item in pages %}
  64.                         <li class="col-12 inspirations-item">
  65.                             <a href="{{ path('app_page_item', { '_locale': app.request.locale, slug: item.slug }) }}"></a>
  66.                             <h2>{{ item.title }}</h2>
  67.                         </li>
  68.                     {% endfor %}
  69.                 </ul>
  70.                 <div class="pagination d-flex justify-content-center pb-5">
  71.                     {{ knp_pagination_render(pages) }}
  72.                 </div>
  73.             </div>
  74.             <div class="col-12 col-lg-5">
  75.                 <img src="{{ absolute_url( asset('build/images/icons/Areeiro.svg') ) }}" alt="Areeiro">
  76.             </div>
  77.         </div>
  78.     </div>
  79. {% endblock %}
  80. {% block footer %}
  81.     {% include './partials/footer.html.twig' %}
  82. {% endblock %}
  83. {% block javascripts %}
  84.     {{ parent() }}
  85. {% endblock %}