templates/themes/ottcomputer/content.cad2cut.html.twig line 1

Open in your IDE?
  1. {% set startSite = "" %}
  2. {% set startShopSite = "" %}
  3. <!DOCTYPE html>
  4. <html class="no-js {{ "is-" ~ browserInformation().browser.name|lower }} {{ "is-" ~ browserInformation().engine.name|lower }}"
  5.       lang="{{ app.request.locale }}">
  6. <head>
  7.     {% block head %}
  8.         {% block analytics %}
  9.         {% endblock %}
  10.         <meta charset="utf-8"/>
  11.         <meta http-equiv="x-ua-compatible" content="ie=edge">
  12.         <meta name="viewport" content="width=device-width"/>
  13.         {% block favicon %}
  14.             <link rel="shortcut icon" type="image/png"
  15.                   href="{{ asset('build/ottcomputer/images/favicon.ico', 'ottcomputer') }}"/>
  16.         {% endblock %}
  17.         {% set title_suffix = block('title_suffix') %}
  18.         <title>{% block title %}{% block title_prefix %}OttWebShop{% endblock %}{% if title_suffix is not empty %} - {% endif %}{% block title_suffix %}{% endblock %}{% endblock %}</title>
  19.         {% block stylesheets %}
  20.             {{ encore_entry_link_tags('app', null, 'ottcomputer') }}        {% endblock %}
  21.         <meta name="theme-color" content="{% block theme_color %}#007DC6{% endblock %}"/>
  22.     {% endblock %}
  23. </head>
  24. {% block body_outer %}
  25.     <body id="body"
  26.           class="{% block body_classes %}{% endblock %} {% if app.request.cookies.get('cookie-consent-accepted') is not defined or not app.request.cookies.get('cookie-consent-accepted') %}cookie-notice-is-open{% endif %}"
  27.           data-toggler=".disable-scroll">
  28.         <div class="page-container">
  29.             <a href="{{ startShopSite }}" class="hide-for-small logo-corner logo-corner-top" alt="CAD" title="HOME"></a>
  30.             <a href="{{ startShopSite }}" class="hide-for-small logo-corner logo-corner-bottom" alt="CUT" title="HOME"></a>
  31.             <a href="{{ startShopSite }}" class="hide-for-small logo-corner logo-corner-middle" alt="CAD2CUT" title="HOME"></a>
  32.             <div class="wrap custom-bg">
  33.                 <header class="main-header main-header-c2c">
  34.                     {{ include('includes/header/header-cad2cut-navigation.html.twig') }}
  35.                 </header>
  36.                 {% block offcanvas_left %}
  37.                     <div class="off-canvas position-left navigation" id="off-canvas-left" data-off-canvas>
  38.                         {% block offcanvas_left_inner %}
  39.                             {% block offcanvas_left_inner_close_button %}
  40.                                 <button class="close-button" aria-label="Close menu" type="button" data-close>
  41.                                     <span aria-hidden="true"><span class="icon-times"></span></span>
  42.                                 </button>
  43.                             {% endblock %}
  44.                             <div class="navigation-content"></div>
  45.                             <div class="loader-overlay"></div>
  46.                         {% endblock %}
  47.                     </div>
  48.                 {% endblock %}
  49.                 {{ include('includes/modal-confirm-offer.html.twig') }}
  50.                 <div class="grid-container " id="main-content-cad">
  51.                     <div>
  52.                         {% block container_inner %}
  53.                         {% endblock %}
  54.                     </div>
  55.                 {% block footer %}
  56.                     {{ include('includes/footer.html.twig') }}
  57.                 {% endblock %}
  58.                 </div>
  59.                 {% block javascripts %}
  60.                     {{ encore_entry_script_tags('app', null, 'ottcomputer') }}
  61.                 {% endblock %}
  62.                 {% block javascripts_extend %}
  63.                 {% endblock %}
  64.             </div>
  65.         </div>
  66.     </body>
  67. {% endblock %}
  68. </html>