templates/geo/parts/seo-url-blocks.html.twig line 1

Open in your IDE?
  1. {% if seoUrls is defined and seoUrls|length > 0 %}
  2.     <div class="container">
  3.         <div class="container__header">
  4.             <h3 class="container__header-title">
  5.                 {{ 'Альтернативные варианты отдыха'|trans }}
  6.             </h3>
  7.         </div>
  8.         <div class="seo-links">
  9.             {% for item in seoUrls %}
  10.                 <a class="seo-link" href="{{ app.request.getSchemeAndHttpHost() }}{{ item.url }}">{{ item.translate(locale).title }}</a>
  11.             {% endfor %}
  12.         </div>
  13.     </div>
  14. {% endif %}