src/Noahtech/Sistemas/InterjamaBundle/Resources/views/Default/error.html.twig line 1

Open in your IDE?
  1. {% extends '@NoahtechSistemasInterjama/Default/base.html.twig' %}
  2. {% block title %}
  3.     {{title}}
  4. {% endblock %}
  5. {% block body %}
  6.     <section>
  7.         <br>
  8.         <br>
  9.         <div class="text-center text-danger" >
  10.             {% if error==1 %}
  11.                 La página solicitada no existe.
  12.             {% endif %}
  13.         </div>
  14.         <br>
  15.         <br>
  16.         <br>
  17.         <br>
  18.         <div class="text-center" >
  19.             {% if is_granted('ROLE_ADMIN') %}
  20.                 <a class="btnM colorBase" href="{{path('admin_home')}}" > &nbsp;Inicio</a>
  21.             {% endif %}            
  22.         </div>
  23.         <div class="text-center" >
  24.             {% if is_granted('ROLE_CLIENTE') %}
  25.                 <a class="btnM colorBase" href="{{path('cliente_home')}}" > &nbsp;Inicio</a>
  26.             {% endif %}            
  27.         </div>
  28.     </section>
  29. {% endblock %}