templates/app.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="es" class="wide wow-animation" style="overflow: auto">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>
  6.             {% block title %}Cloud Farmers
  7.             {% endblock %}
  8.         </title>
  9.         <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
  10.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  11.         <meta name="csrf-token" content="{{ csrf_token('authenticate') }}">
  12.         {% block stylesheets %}
  13.             <link rel="icon" type="image/ico" href="{{asset('assets/img/favicon.ico')}}"/>
  14.             {{ encore_entry_link_tags('app') }}
  15.             
  16.         {% endblock %}
  17.     </head>
  18.     <body>
  19.         {% block body %}
  20.             <div id="app"></div>
  21.         {% endblock %}
  22.         {% block javascripts %}
  23.             {{ encore_entry_script_tags('app') }}
  24.         {% endblock %}
  25.         
  26.     </body>
  27. </html>