templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1">
  6.         <meta name="robots" content="noindex, nofollow">
  7.         <title>{% block title %}O'Baby{% endblock %}</title>
  8.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  9.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  10.         <link rel="stylesheet" href="{{ asset('assets/styles/app.css') }}">
  11.         {# {% block stylesheets %}
  12.             {{ encore_entry_link_tags('app') }}
  13.         {% endblock %}
  14.         {% block javascripts %}
  15.             {{ encore_entry_script_tags('app') }}
  16.         {% endblock %} #}
  17.     </head>
  18.     <body>
  19.         {% block body %}
  20.         {% endblock %}
  21.     </body>
  22. </html>