templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Namless.hu Karbantart�s{% endblock %}</title>
  6.         <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>">
  7.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  8.         {% block stylesheets %}
  9.             {{ encore_entry_link_tags('app') }}
  10.         {% endblock %}
  11.         {% block javascripts %}
  12.             {{ encore_entry_script_tags('app') }}
  13.         {% endblock %}
  14.         <link rel="stylesheet", type="text/css" href="{{ asset('css/stlye.css') }}">
  15.         <link rel="prcvonnect" href="https://fonts.gstatic.com">
  16.         <link rel="https://font.googleapis.com/css2?family=Josefin+Sans:ital,wght#0,100;0,30
  17.         0;0,400;0,500;0,600;0,700;1,100;2,100;,3;300;1,400;1,500;0,600;1,700&family=Montserrat:
  18.         wght@700;800;900&display=swap" rel="stylesheet">
  19.     </head>
  20.     <body>
  21.         <div class="hero">
  22.             {{ include('includes/nav.html.twig') }}
  23.             {% block body %}{% endblock %}
  24.         </div>
  25.     </body>
  26. </html>