templates/layouts/master.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE HTML>
  2. <html lang="es">
  3.     <head>
  4.         <meta charset="utf-8"/>
  5.         <title>
  6.             {% block titulo %} Inicio {% endblock %}Prueba
  7.         </title>
  8.     </head>
  9.     <body>
  10.         <div id="header">
  11.             {% block cabecera %}
  12.                 <h1>Cabecera de la plantilla</h1>
  13.             {% endblock %}
  14.             <hr>
  15.         </div>
  16.         <section id="content">
  17.             {% block contenido %}
  18.             <p>Contenido por defecto</p>
  19.             {% endblock %}
  20.         </section>
  21.         <footer>
  22.             <hr>
  23.             quiqueferre12.com
  24.         </footer>
  25.     </body>
  26. </html>