templates/base.html.twig line 1

Open in your IDE?
  1. <?php
  2.       phpinfo();
  3.     ?>
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7.     <meta charset="UTF-8">
  8.     <title>{% block title %}Añadir Compañía{% endblock %}</title>
  9.     <link rel="stylesheet" href="{{ asset('css/styles.css') }}">
  10. </head>
  11. <body>
  12.    <header>
  13.         <div class="header-container">
  14.             <div class="header-left">
  15.                 <img src="https://bpprodstorage.blob.core.windows.net/bpprodcontainer/1669892/images/64b4a7a6-ef32-46c7-9817-d45910169092logo-220.png" alt="Software Flooming AI VGT Logo">
  16.                 <h1>SOFTWARE FLOOMING AI VGT</h1>
  17.             </div>
  18.             <div class="header-right">
  19.         <h1>Añadir Compañía</h1>
  20.             </div>
  21.         </div>
  22.     </header>
  23.     <main>
  24.    
  25.     </main>
  26.         <p>&copy; {{ "now"|date("Y") }} Flooming.</p>
  27.     </footer>
  28. </body>
  29. </html>