<!DOCTYPE html><html lang="{{ app.request.locale|slice(0, 2) }}"><head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> {# ==== Document Title ==== #} {% block title %} {{ sylius_template_event('dedi_sylius_seo_plugin.title', { resource: product ?? sylius.channel }) }} {% endblock %} {#<title>{% block title %}{{ sylius.channel.name }}{% endblock %}</title>#} <meta content="width=device-width, initial-scale=1" name="viewport"> {# ==== Metatags ==== #} {% block metatags %} {{ sylius_template_event('dedi_sylius_seo_plugin.metatags', { resource: product ?? sylius.channel }) }} {{ sylius_template_event('dedi_sylius_seo_plugin.rich_snippets') }} {% endblock %} {# ==== Links ==== #} {% block links %} {{ sylius_template_event('dedi_sylius_seo_plugin.links') }} {% endblock %} {# ==== Stylesheets ==== #} {% block stylesheets %} {{ sylius_template_event('sylius.shop.layout.stylesheets') }} {% endblock %} {# ==== Favicon ==== #} {% block favicon %} <link rel="apple-touch-icon" sizes="180x180" href="{{ asset('apple-touch-icon.png') }}"> <link rel="icon" type="image/png" sizes="32x32" href="{{ asset('favicon-32x32.png') }}"> <link rel="icon" type="image/png" sizes="16x16" href="{{ asset('favicon-16x16.png') }}"> <link rel="manifest" href="{{ asset('site.webmanifest') }}"> <link rel="mask-icon" href="{{ asset('safari-pinned-tab.svg') }}" color="#005fa9"> <meta name="msapplication-TileColor" content="#fafafa"> <meta name="theme-color" content="#fafafa"> {% endblock %} {# ==== Sylius Template Event ==== #} {{ sylius_template_event('sylius.shop.layout.head') }}</head><body class="page">{{ sylius_template_event('sylius.shop.layout.before_body') }}{# ==== Header ==== #}{% block header %} {#{{ sylius_template_event('sylius.shop.layout.topbar') }}#} {#{{ sylius_template_event('sylius.shop.layout.header') }}#} <header class="page-header"> <nav class="navbar navbar-expand-lg container-fluid navbar-light bg-white border-bottom"> {% block shop_header %} {{ sylius_template_event('app.shop.layout.header', _context) }} {% endblock %} </nav> </header>{% endblock %}{% set _breadcrumb = block('breadcrumb') ?? null %}<div class="page-main"> {# ==== Content ==== #} {% block main_content %} <main class="main-container container-fluid mb-7{% if not _breadcrumb %} mt-7{% endif %}"> {% block breadcrumb %}{% endblock %} {% block flashes %} {% include '@SyliusShop/_flashes.html.twig' %} {% endblock %} {{ sylius_template_event('sylius.shop.layout.before_content') }} {% block content %}{% endblock %} {{ sylius_template_event('sylius.shop.layout.after_content') }} </main> {% endblock %}</div>{# ==== Footer ==== #}{% block footer %} <footer class="page-footer"> {{ sylius_template_event('app.shop.layout.footer') }} </footer> {#{% include '@SyliusShop/_footer.html.twig' %}#}{% endblock %}{# ==== Stylesheets ==== #}{% block javascripts %} {{ sylius_template_event('sylius.shop.layout.javascripts') }}{% endblock %}{{ sylius_template_event('sylius.shop.layout.after_body') }}<div class="loading-overlay" data-js-loading-overlay> <div class="spinner-border" role="status"> <span class="sr-only">Loading...</span> </div></div></body></html>