<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>{% block title %}bitcubo - CallCenter C&W{% endblock %} - bitcubo</title>
{# Run `composer require symfony/webpack-encore-bundle`
and uncomment the following Encore helpers to start using Symfony UX #}
{% block stylesheets %}
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,500,500i,600,600i&display=swap" rel="stylesheet" />
{{ encore_entry_link_tags('app') }}
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body class="{% block bodyclass %}bg-light{% endblock %}">
{% if is_granted('IS_AUTHENTICATED_FULLY') %}
<header class="navbar navbar-expand-md navbar-dark bg-dark">
{{ include('_nav.html.twig') }}
</header>
{% endif %}
{% block body %}{% endblock %}
</body>
</html>