templates/fullPage.html.twig line 1

Open in your IDE?
  1. <html>
  2.     <head>
  3.         <meta charset="UTF-8">
  4.         <title>{% block title %}CRMNC{% endblock %}</title>
  5.         <!-- ** Mobile Specific Metas ** -->
  6.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.         <meta name="description" content="Site CRMNC">
  8.         <meta content="" name="keywords">
  9.         <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0">
  10.         <!--Favicon-->
  11.         <link rel="icon" href="{{asset('datas/images/favicon.png')}}" type="image/x-icon">
  12.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  13.         {% block stylesheets %}
  14.             <link href="{{asset('assets/img/apple-touch-icon.png')}}" rel="apple-touch-icon">
  15.             <!-- Google Fonts -->
  16.         {% endblock %}
  17.     </head>
  18.     <body>
  19.         {% block content %}{% endblock %}
  20.         {% block javascripts %}
  21.             <script src="{{asset('assets/js/jquery.js')}}"></script>
  22.         {% endblock %}
  23.     </body>
  24. </html>