templates/Pages/HomePage/view.html.twig line 1

Open in your IDE?
  1. {% extends 'Page/layout.html.twig' %}
  2. {# Extra body classes #}
  3. {% block extra_body_classes %} homepage{% endblock %}
  4. {# Breadcrumbs #}
  5. {% block breadcrumbs %}{% endblock %}
  6. {# Content #}
  7. {% block content %}
  8.     {{ render_pagetemplate(page) }}
  9. {% endblock %}
  10. {% block footerscripts %}
  11.     <!-- Google search integration -->
  12.     <script type="application/ld+json">
  13.         {
  14.           "@context": "http://schema.org",
  15.           "@type": "WebSite",
  16.           "url": "{{ url("_slug", {url: '/'}) }}",
  17.           "potentialAction": {
  18.             "@type": "SearchAction",
  19.             "target": "{{ get_url_by_internal_name('search', app.request.locale) }}?query={search_term_string}",
  20.             "query-input": "required name=search_term_string"
  21.           }
  22.         }
  23.     </script>
  24. {% endblock %}