templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>
  6.             {% block title %}Welcome!
  7.             {% endblock %}
  8.         </title>
  9.         <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  10.         <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.js" integrity="sha512-+k1pnlgt4F1H8L7t3z95o3/KO+o78INEcXTbnoJQ/F2VqDVhWoaiVml/OEHv9HsVgxUaVW+IbiZPUJQfF/YxZw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
  11.         <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
  12.         <link rel="icon" type="image/x-icon" href="{{ asset("favicon.ico") }}"/>
  13.         <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
  14.         <link rel="preconnect" href="https://fonts.googleapis.com">
  15.         <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  16.         <link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
  17.         <link
  18.         rel="stylesheet" href="{{ asset('build/assets/fontawesome/css/all.min.css') }}">
  19.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  20.         {% block stylesheets %}
  21.             {{ encore_entry_link_tags('app') }}
  22.         {% endblock %}
  23.         {% block javascripts %}
  24.             {{ encore_entry_script_tags('app') }}
  25.             {% if app.request.attributes.get('_route') == 'job.index' %}
  26.                 {{ encore_entry_script_tags('jobForm') }}
  27.             {% endif %}
  28.         {% endblock %}
  29.     </head>
  30.     <body>
  31.         {% set actual_client = client_context.getCurrentClient() %}
  32.         <div class="container-fluid px-0"> {% block body %}{% endblock %}
  33.             </div>
  34.         </body>
  35.     </html>