templates/base.html.twig line 1
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>{% block title %}Welcome!{% endblock %}</title><link rel="icon"href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}{% block stylesheets %}{{ encore_entry_link_tags('app') }}{% endblock %}{% block javascripts %}{{ encore_entry_script_tags('app') }}{% endblock %}</head><body {{ stimulus_controller('menu') }}>{% block body %}<section class="dashboard_wrapper" {{ stimulus_target('menu', 'wrapper') }} >{% block mobile_header %}<header class="mobile-header"><a class="navbar-toggle-left" {{ stimulus_action('menu','toggle') }} data-bs-toggle="tooltip" data-bs-placement="bottom"data-bs-custom-class="tooltip1" title="Menü zuklappen"><i class="fa fas fa-bars"></i></a><a href="{{ path('app_dashboard') }}" class="logo"><img src="{{ asset('static/images/dashboard-logo.png') }}" alt="Logo" class="img-fluid"></a><a data-bs-toggle="tooltip" {{ stimulus_action('menu','toggleRightSidebar') }} class="navbar-toggle1" data-bs-html="true" data-bs-placement="bottom"data-bs-custom-class="tooltip1" title="Seitenleiste <br> zuklappen"><i class="fa fas fa-ellipsis-vertical"></i></a></header>{% endblock %}<div class="layout-box d-flex">{% block left_sidebar %}{% if is_granted('ROLE_ADMIN') or is_granted('ROLE_PORTAL_ADMIN')%}{% include "partials/admin/_left_sidebar.htm.twig" %}{% else %}{% include "partials/_left_sidebar.htm.twig" %}{% endif %}{% endblock %}{% block content %}{% endblock %}{% block right_siderbar %}{% if is_granted('ROLE_ADMIN') or is_granted('ROLE_PORTAL_ADMIN')%}{% include 'partials/admin/_right_sidebar.html.twig' %}{% else %}{% include 'partials/_right_sidebar.html.twig' %}{% endif %}{% endblock %}</div></section>{% endblock %}{% if app.user.portal is defined %}<style>:root {--blue: {{ app.user.portal.secondaryColor}};--blue1: #36bedb;--bgColor: #d6dce6;--grey: {{ app.user.portal.primaryColor}};--darkblue: #2172ef;--green: #31c9a7;--blue2: #4f37de;--red: #da374d;--orange: #f0af13;--white: #FFF;}</style>{% endif %}</body></html>