templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="es">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}bitcubo - CallCenter C&W{% endblock %} - bitcubo</title>
  6.         {# Run `composer require symfony/webpack-encore-bundle`
  7.            and uncomment the following Encore helpers to start using Symfony UX #}
  8.         {% block stylesheets %}
  9.             <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,500,500i,600,600i&display=swap" rel="stylesheet" />
  10.             {{ encore_entry_link_tags('app') }}
  11.             <style>
  12.             .bd-placeholder-img {
  13.                 font-size: 1.125rem;
  14.                 text-anchor: middle;
  15.                 -webkit-user-select: none;
  16.                 -moz-user-select: none;
  17.                 user-select: none;
  18.             }
  19.             
  20.             @media (min-width: 768px) {
  21.                 .bd-placeholder-img-lg {
  22.                 font-size: 3.5rem;
  23.                 }
  24.             }
  25.             </style>
  26.         {% endblock %}
  27.         {% block javascripts %}
  28.             {{ encore_entry_script_tags('app') }}
  29.         {% endblock %}
  30.     </head>
  31.     <body class="{% block bodyclass %}bg-light{% endblock %}">
  32.         {% if is_granted('IS_AUTHENTICATED_FULLY') %}
  33.         <header class="navbar navbar-expand-md navbar-dark bg-dark">
  34.             {{ include('_nav.html.twig') }}
  35.         </header>
  36.         {% endif %}
  37.         {% block body %}{% endblock %} 
  38.     </body>
  39. </html>