templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Welcome!{% endblock %}</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.             {{ encore_entry_link_tags('app') }}
  10.         {% endblock %}
  11.         {% block javascripts %}
  12.             {{ encore_entry_script_tags('app') }}
  13.         {% endblock %}
  14.     </head>
  15.     <body>
  16.         <div id="body-container" class="{% block body_container_classes %}grid-container{% endblock %}">
  17.             <div class="cell small-12">
  18.                 {% if app.user %}
  19.                     <p class="text-white ml-[11.5rem] text-lg tracking-ultrawide font-bold">{{ app.user.company.name }}'s</p>
  20.                 {% else %}
  21.                     &nbsp;
  22.                 {% endif %}
  23.             </div>
  24.             <div class="cell small-2 medium-3 large-1 text-right {% if app.user %}mt-11{% else %}mt-15{% endif %}">
  25.                 {% if app.user %}
  26.                     <p class="status-bar">{{ app.user.useridentifier }} - Logged in</p>
  27.                 {% endif %}
  28.             </div>
  29.             {% if is_granted('ROLE_USER') %}
  30.                 <div class="cell small-12 main-menu-holder">
  31.                     {{ knp_menu_render('main', {'template' : 'menu/custom_menu.html.twig'}) }}
  32.                 </div>
  33.             {% endif %}
  34.             <div class="grid-x grid-margin-x">
  35.                 {% block body %}{% endblock %}
  36.             </div>
  37. {#             <div class="grid-y" style="height: 500px;">
  38.                 <div class="cell auto">
  39.                     &nbsp;
  40.                 </div>
  41.             </div> #}
  42.         </div>
  43.     </body>
  44. </html>