templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="pt-br">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1">
  7.         <meta name="description" content="Ambiente de Administração">
  8.         <meta name="author" content="Alessandro Feitoza">
  9.         <link rel="icon" type="image/png" sizes="16x16" href="/img/favicon.ico">
  10.         <title>{% block title %}Welcome!{% endblock %}</title>
  11.         <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  12.         {% block stylesheets %}{% endblock %}
  13.         {% block extra_style %}{% endblock %}
  14.     </head>
  15.     <body>
  16.         {% block body %}{% endblock %}
  17.         {% block javascripts %}{% endblock %}
  18.         {% block extra_javascript %}{% endblock extra_javascript %}
  19.     </body>
  20. </html>