templates/main/termConditions.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block head %}
  3.     <script type="application/ld+json">
  4.         {
  5.                                                                         "@context": "https://schema.org",
  6.                                                                     "@type": "LocalBusiness",
  7.                                                                         "name": "Dragon Tree Travel Unipessoal Lda",
  8.                                                                         "image": "https://gettohikes.com/build/images/icons/footer-logo.png",
  9.                                                                         "@id": "1",
  10.                                                                     "url": "https://gettohikes.com/",
  11.                                                                     "telephone": "914 000 440",
  12.                                                                         "priceRange": "$",
  13.                                                                         "address": {
  14.                                                                         "@type": "PostalAddress",
  15.                                                                         "streetAddress": "Estrada João Gonçalves Zarco 435",
  16.                                                                         "addressLocality": "Madeira",
  17.                                                                         "postalCode": "9325-033",
  18.                                                                     "addressCountry": "PT"
  19.                                                                         }, 
  20.                                                                         "geo": {
  21.                                                                         "@type": "GeoCoordinates",
  22.                                                                         "latitude": 32.6703265,
  23.                                                                         "longitude": -16.9807572
  24.                                                                         }
  25.                                                                         }
  26.     </script>
  27.     <link rel="alternate" hreflang="en" href="https://gettohikes.com/en/term-and-conditions"/>
  28.     <link rel="alternate" hreflang="fr" href="https://gettohikes.com/fr/term-and-conditions"/>
  29.     <link rel="alternate" hreflang="pt" href="https://gettohikes.com/pt/term-and-conditions"/>
  30.     <link rel="alternate" hreflang="de" href="https://gettohikes.com/de/term-and-conditions"/>
  31.     <link rel="alternate" hreflang="pl" href="https://gettohikes.com/pl/term-and-conditions"/>
  32.     <link rel="alternate" hreflang="x-default" href="https://gettohikes.com/en/term-and-conditions"/>
  33.     {% if app.request.locale == 'en' %}
  34.         <link rel="canonical" href="https://gettohikes.com/en/term-and-conditions"/>
  35.     {% endif %}
  36.     {% if app.request.locale == 'fr' %}
  37.         <link rel="canonical" href="https://gettohikes.com/fr/term-and-conditions"/>
  38.     {% endif %}
  39.     {% if app.request.locale == 'pt' %}
  40.         <link rel="canonical" href="https://gettohikes.com/pt/term-and-conditions"/>
  41.     {% endif %}
  42.     {% if app.request.locale == 'de' %}
  43.         <link rel="canonical" href="https://gettohikes.com/de/term-and-conditions"/>
  44.     {% endif %}
  45.     {% if app.request.locale == 'pl' %}
  46.         <link rel="canonical" href="https://gettohikes.com/pl/term-and-conditions"/>
  47.     {% endif %}
  48. {% endblock %}
  49. {% block title %}
  50.     {% if seo['meta-title'] %}
  51.         {{ seo['meta-title'] }}
  52.     {% endif %}
  53. {% endblock %}
  54. {% block meta_description %}
  55.     {% if seo['meta-desc'] %}
  56.         {{ seo['meta-desc'] }}
  57.     {% endif %}
  58. {% endblock %}
  59. {% block meta_keywords %}
  60.     {% if seo['meta-keywords'] %}
  61.         {{ seo['meta-keywords'] }}
  62.     {% endif %}
  63. {% endblock %}
  64. {% block meta_nofollow %}
  65.     {% if seo['nofollow'] %}noindex, nofollow
  66.     {% endif %}
  67. {% endblock %}
  68. {% block header %}
  69.     {% include './partials/secondaryHeader.html.twig' %}
  70. {% endblock %}
  71. {% block body %}
  72.     <div class="container-fluid terms">
  73.         <div class="container">
  74.             <div class="row px-4">
  75.                 <nav aria-label="breadcrumb" class="px-0">
  76.                     <ol class="breadcrumb">
  77.                         <li class="breadcrumb-item">
  78.                             <a href="/">{{ 'pages.breadcrumb.home'|trans }}</a>
  79.                         </li>
  80.                         <li class="breadcrumb-item active" aria-current="page">{{ page.title }}</li>
  81.                     </ol>
  82.                 </nav>
  83.             </div>
  84.             <div class="row px-2">
  85.                 <h1 class="terms-header">{{ page.title }}</h1>
  86.                 <div class="terms-subheader">{{ page.shortDesc }}</div>
  87.             </div>
  88.         </div>
  89.     </div>
  90.     <div class="container-fluid conditions">
  91.         <div class="container">
  92.             <div class="conditions-content">
  93.                 {{ page.description|raw }}
  94.             </div>
  95.         </div>
  96.     </div>
  97.     <div class="col-12 gallery d-none d-lg-flex">
  98.         {% for item in page.gallery.galleryItems %}
  99.             {% if item.media %}
  100.                 <img src="{{ sonata_path(item.media, 'reference') }}" loading="lazy" alt="{{item.media.description}}">
  101.             {% endif %}
  102.         {% endfor %}
  103.     </div>
  104.     <div class="swiper gallery-swiper d-lg-none">
  105.         <div class="swiper-wrapper">
  106.             {% for item in page.gallery.galleryItems %}
  107.                 {% if item.media %}
  108.                     <div class="swiper-slide">
  109.                         <img src="{{ sonata_path(item.media, 'reference') }}" loading="lazy" alt="{{item.media.description}}">
  110.                     </div>
  111.                 {% endif %}
  112.             {% endfor %}
  113.         </div>
  114.     </div>
  115. {% endblock %}
  116. {% block footer %}
  117.     {% include './partials/footer.html.twig' %}
  118. {% endblock %}
  119. {% block javascripts %}
  120.     {{ parent() }}
  121. {% endblock %}