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 %}Welcome!{% endblock %}</title>
  6.         <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7.         <link rel="apple-touch-icon" sizes="76x76" href=" {{ asset('img/logo.png') }}">
  8.         <link rel="icon" type="image/png" href=" {{ asset('img/logo.png') }}">
  9.         <title>
  10.             Delta Force
  11.         </title>
  12.         <!--     Fonts and icons     -->
  13.         <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet" />
  14.         <!-- Nucleo Icons -->
  15.         <link href=" {{ asset('css/nucleo-icons.css') }}" rel="stylesheet" />
  16.         <link href=" {{ asset('css/nucleo-svg.css') }}" rel="stylesheet" />
  17.         <!-- Font Awesome Icons -->
  18.         <script src="https://kit.fontawesome.com/42d5adcbca.js" crossorigin="anonymous"></script>
  19.         <link href=" {{ asset('css/nucleo-svg.css') }}" rel="stylesheet" />
  20.         <!-- CSS Files -->
  21.         <link id="pagestyle" href=" {{ asset('css/argon-dashboard.css?v=2.0.4') }}" rel="stylesheet" />
  22.         {% block stylesheets %}
  23.             {{ encore_entry_link_tags('app') }}
  24.             {{ encore_entry_link_tags('notyf') }}
  25.         {% endblock %}
  26.                 <!--   Core JS Files   -->
  27.         <script src="{{ asset('js/core/popper.min.js') }}"></script>
  28.         <script src="{{ asset('js/core/bootstrap.min.js') }}"></script>
  29.         <script src="{{ asset('js/plugins/perfect-scrollbar.min.js') }}"></script>
  30.         <script src="{{ asset('js/plugins/smooth-scrollbar.min.js') }}"></script>
  31.         <script src="{{ asset('js/plugins/chartjs.min.js') }}"></script>
  32.         
  33.       
  34.         <!-- Github buttons -->
  35.         <script async defer src="https://buttons.github.io/buttons.js"></script>
  36.         <!-- Control Center for Soft Dashboard: parallax effects, scripts for the example pages etc -->
  37.         <script src="{{ asset('js/argon-dashboard.min.js?v=2.0.4') }}"></script>
  38.         {% block javascripts %}
  39.             {{ encore_entry_script_tags('app') }}
  40.             {{ encore_entry_script_tags('notyf') }}
  41.         {% endblock %}
  42.     </head>
  43.         {% block body %}{% endblock %}
  44.         {% include '_notyf.html.twig' %}
  45.     </body>
  46. </html>