<!-- templateType: none --> {% set _base_q_lang = (request.query_dict.lang or '')|string|lower|replace('_', '-')|split('-')|first %} {% if _base_q_lang in ['fr', 'es', 'pt', 'it', 'de'] and (not html_lang or html_lang == 'en') %} {% set html_lang = _base_q_lang %} {% endif %} <!doctype html> <html lang="{{ html_lang }}" {{ html_lang_dir }}> <head> <meta charset="utf-8"> {% if page_meta.html_title or pageTitle %}<title>{{ page_meta.html_title or pageTitle }}</title>{% endif %} {% if brand_settings.favicon.src %}<link rel="shortcut icon" href="{{ brand_settings.favicon.src }}" />{% endif %} {% if site_settings.favicon_src and not brand_settings.favicon.src %}<link rel="shortcut icon" href="{{ site_settings.favicon_src }}" />{% endif %} <meta name="description" content="{{ page_meta.meta_description }}"> {% include '../partials/system-theme-chrome.hubl.html' %} {% if template_css %} {{ require_css(get_asset_url(template_css)) }} {% endif %} {{ standard_header_includes }} </head> <body> <div class="body-wrapper {{ builtin_body_classes }}"> {% block header %} {% global_partial path="../partials/header.html" %} {% endblock header %} <main id="main-content" class="body-container-wrapper"> {% block body %} {% endblock body %} </main> {% block footer %} {% global_partial path="../partials/footer.html" %} {% endblock footer %} </div> {{ standard_footer_includes }} </body> </html>