{% trans_default_domain "base" %}
{% set titleBlock %}{% block title %}{{ 'bi.aimour.ai' }}{% endblock %}{% endset %}
{% set currentRoute = app.request.attributes.get('_route') %}
{% set urlWithParameters = url('index') ~ app.request.requestUri|slice(1) %}
{% set activeProject = 'aimour' %}
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="robots" content="none">
<meta name="viewport" content="width=400, user-scalable=no">
{% if app.request.get('isAutoRefreshPage') %}
<meta http-equiv="Refresh" content="3600">
{% endif %}
<title>{{ titleBlock }}</title>
<link rel="favicon shortcut icon" href="{{ asset('favicon.ico') }}" type="image/x-icon">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.18/css/bootstrap-select.min.css" integrity="sha512-ARJR74swou2y0Q2V9k0GbzQ/5vJ2RBSoCWokg4zkfM29Fb3vZEQyv0iWBMW/yvKgyHSR/7D64pFMmU8nYmbRkg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="{{ asset('css/custom.css') }}">
{% block stylesheets %}{% endblock %}
</head>
<body>
<div id="menu-wrapper" class="{% if app.request.get('_route') == 'index' %}show{% else %}hide{% endif %}">
{% if app.request.get('_route') != 'index' %}
<span class="close menu-hide">×</span>
{% endif %}
{% include 'menu.html.twig' %}
</div>
<nav class="quick-links">
<p class="quick-links-left-wrapper">
<a href="{{ path('index') }}"><svg width="174" height="160" viewBox="0 0 174 160" fill="none" xmlns="http://www.w3.org/2000/svg" class="logo" style="width: auto;"><path d="M126.626 18.7877C113.748 18.7877 157.361 8.39978 152.381 19.4746L139.504 104.639L96.5781 128.162C133.065 94.9375 135.211 72.0153 135.211 48.8356C135.211 31.6654 143.796 18.7877 126.626 18.7877ZM126.626 1.61755C153.068 1.61755 173.844 22.3076 173.844 48.8356C173.844 81.2014 144.655 107.729 100.441 147.822L87.993 159.154L75.5446 147.822C31.3314 107.729 2.14203 81.2014 2.14203 48.8356C2.14203 22.3076 22.918 1.61755 49.3601 1.61755C64.2981 1.61755 78.6352 8.57148 87.993 19.4746C97.3507 8.57148 111.688 1.61755 126.626 1.61755Z" fill="url(#paint0_linear_34_532)"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M62.988 46.3723L30.4318 3.23526L34.7185 0L105.52 93.8123H166.839V99.1828H102.845L67.0413 51.7429L0.351831 51.9154L2.14194 46.3723H24.4931L0 13.9783L4.28388 10.7392L31.226 46.3723H62.988ZM89.4044 17.2411L77.679 1.78487L73.4003 5.03077L85.9059 21.5154L120.697 70.5398H172.21L174 65.1693H123.472L93.2694 22.6116H168.629L163.259 17.2411H89.4044ZM58.0605 84.8613H2.14194V79.4908H60.7953L93.3442 124.245H36.1555V118.875H82.7977L58.0605 84.8613Z" fill="#E5E5E5"></path><defs><linearGradient id="paint0_linear_34_532" x1="2.14203" y1="80.3858" x2="173.844" y2="80.3858" gradientUnits="userSpaceOnUse"><stop stop-color="#9796F0"></stop><stop offset="1" stop-color="#FBC7D4"></stop></linearGradient></defs></svg></a>
<span>{{ titleBlock }}</span>
</p>
<div>
{% if app.user %}
<span>
{{ app.user.username }}
</span>
{% endif %}
{% block links %}{% endblock %}
{% if app.user %}
<a href="#" class="menu-show">
{{ 'menu'|trans }}
</a>
{% endif %}
</div>
</nav>
<div class="container-fluid">
{% block body %}{% endblock %}
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" integrity="sha512-bnIvzh6FU75ZKxp0GXLH9bewza/OIw6dLVh9ICg0gogclmYGguQJWl8U30WpbsGTqbIiAwxTsbe76DErLq5EDQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/momentjs/latest/moment.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-Fy6S3B9q64WdZWQUiU+q4/2Lc9npb8tCaSX9FK7E8HnRr0Jz8D6OP9dO5Vg3Q9ct" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.18/js/bootstrap-select.min.js" integrity="sha512-yDlE7vpGDP7o2eftkCiPZ+yuUyEcaBwoJoIhdXv71KZWugFqEphIS3PU60lEkFaz8RxaVsMpSvQxMBaKVwA5xg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script type="text/javascript" src="{{ asset('js/custom/custom.js') }}"></script>
<script type="text/javascript">
let App = {
messages: {
'dp_separator': ' {{ 'to'|trans }} ',
}
}
</script>
{% block javascripts %}{% endblock %}
</body>
</html>