{% trans_default_domain 'support' %}
{% if app.request.headers.get('Host') == domain_postman_support %}
{% set domainTitle = 'Superpošťák.cz' %}
{% elseif app.request.headers.get('Host') == domain_delivery_support %}
{% set domainTitle = 'Supervýdejny.cz' %}
{% endif %}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{ domainTitle }} - {% block title %}{% trans %}Backend{% endtrans %}{% endblock %}</title>
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('build/support/img/favicon-32x32.png') }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('build/support/img/favicon-16x16.png') }}">
<link rel="shortcut icon" href="{{ asset('build/support/img/favicon.ico') }}">
{% block stylesheets %}
{{ encore_entry_link_tags('support/main') }}
{% endblock %}
</head>
<body class="c-app">
{% include '/Support/Layout/sidebar.html.twig' %}
<div class="c-wrapper c-wrapper-md-fixed">
{% include '/Support/Layout/content_header.html.twig' %}
<div class="c-body">
<main class="c-main">
<div class="container-fluid">
<div class="row justify-content-center">
{% include '/Support/Layout/flash_message_blok.html.twig' %}
<div class="{{ contentClass|default('col-12') }}">
{% block content %}
{% endblock %}
</div>
</div>
</div>
</main>
</div>
</div>
{% block javascripts %}
{{ encore_entry_script_tags('support/main') }}
{{ encore_entry_script_tags('support/init-tooltips') }}
{% if app.environment == 'prod' %}
{{ encore_entry_script_tags('support/smartlook-support') }}
{% endif %}
{% endblock %}
</body>
</html>