templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     {% set cmsSEO = CMS.SEOfromRoute(app.request.attributes.get('_route')) %}
  5.     {% block SEO %}
  6.     <title>{% block window_title %}{% if seoTitle is defined %}{{ seoTitle }}{% endif %}{% endblock %}</title>
  7.     {% if seoDescription is defined %}
  8.     <meta content="{{ seoDescription }}" name="description">
  9.     {% endif %}
  10.     {% if seoKeywords is defined %}
  11.     <meta content="{{ seoKeywords }}" name="keywords">
  12.     {% endif %}
  13.     {% if metaData is defined %}
  14.         {{ metaData | raw }}
  15.     {% endif %}
  16.     {% if metaTags is defined %}
  17.         {% for name, content in metaTags %}
  18.             <meta property="{{ name }}" content="{{ content }}" />
  19.         {% endfor %}
  20.     {% endif %}
  21.     {% endblock SEO %}
  22.     <!-- Recaptcha script -->
  23.     <script src='https://www.google.com/recaptcha/api.js?render={{ app.environment('RECAPTCHA3_KEY') }}'></script>
  24.     <!-- Favicons -->
  25.     <link href="{{ asset(get_setting('core_site_favicon')) }}" rel="icon">
  26. {#    <link href="{{ asset('build/images/apple-touch-icon.d2525de9.png') }}" rel="apple-touch-icon">#}
  27.     {% block stylesheets %}
  28.         <!-- Google Fonts -->
  29.         <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,600,600i,700,700i,900"
  30.               rel="stylesheet">
  31.         {{ encore_entry_link_tags(get_setting('core_site_layout')) }}
  32.         {{ encore_entry_link_tags('app') }}
  33.     {% endblock %}
  34. </head>
  35. <body>
  36. <header id="header" class="sticky-top">
  37.     {% include 'layout/partials/header.html.twig' %}
  38. </header>
  39. <div class="container">
  40.     {% include 'flash_messages.html.twig' %}
  41.     {% block body %}{% endblock %}
  42. </div>
  43. <footer id="footer">
  44.     {% include 'layout/partials/footer.html.twig' %}
  45. </footer>
  46. {% block javascripts %}
  47.     {{ encore_entry_script_tags(get_setting('core_site_layout')) }}
  48.     {{ encore_entry_script_tags('app') }}
  49. {% endblock %}
  50. </body>
  51. </html>