templates/base_frontend.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta name="viewport" content="width=device-width,initial-scale=1">
  6.     <meta name="theme-color" content="#545659"/>
  7.     <title>
  8.         {%- block meta_title -%}
  9.             Fluid
  10.         {%- endblock %}
  11.     </title>
  12.     {% block meta_decription %}
  13.         <meta name="description" content="Fluid Commerce">
  14.     {% endblock %}
  15.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  16.     <link rel="icon" href="{{ asset('images/logo.png') }}">
  17.     <link rel="apple-touch-icon" sizes="120x120" href="{{ asset('images/icons/icon-144x144.png') }}" />
  18.     <link rel="apple-touch-icon" sizes="152x152" href="{{ asset('images/icons/icon-152x152.png') }}" />
  19.     <link rel="manifest" href="{{ asset('manifest.json') }}" />
  20.     <script type="module">
  21.         import 'https://cdn.jsdelivr.net/npm/@pwabuilder/pwaupdate';
  22.         const el = document.createElement('pwa-update');
  23.         document.body.appendChild(el);
  24.     </script>
  25.     {{ encore_entry_link_tags('app') }}
  26.     <link rel="stylesheet" href="{{ asset('css/fontawesome-pro/css/all.min.css') }}">
  27.     {% block stylesheets %}
  28.         {{ encore_entry_link_tags('app') }}
  29.     {% endblock %}
  30. </head>
  31. <body
  32.     class="frontend-body-pt d-flex flex-column h-100"
  33.     data-controller="home-page accept-cookies"
  34. >
  35. {% block header %}{% endblock %}
  36. <div class="position-relative container-fluid">
  37.     <div class="content-wrap">
  38.         {% block body %}{% endblock %}
  39.     </div>
  40. </div>
  41. {% block footer %}{% endblock %}
  42. {% block javascripts %}
  43.     <script src="https://cdn.jsdelivr.net/npm/@easepick/bundle@1.2.0/dist/index.umd.min.js"></script>
  44.     <!-- jQuery -->
  45.     {{ encore_entry_script_tags('app') }}
  46.     <script src="{{ asset('js/jquery.scrollTo.min.js') }}"></script>
  47.     <script src="{{ asset('js/jquery.ihavecookies.min.js') }}"></script>
  48. {% endblock %}
  49. </body>
  50. </html>