templates/CossBundle/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head><base href="">
  4.     <meta charset="utf-8" />
  5.     <title>{% block title %} COSS {% endblock %}</title>
  6.     {% block meta %}
  7.         <meta charset="UTF-8" />
  8.         <meta name="description" content="{% block meta_description %}{% endblock %}">
  9.         <meta name="keywords" content="{% block meta_keywords %}{% endblock %}">
  10.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11.         <meta name="apple-mobile-web-app-capable" content="yes" />
  12.     {% endblock %}
  13.     {# Version number for assets #}
  14.     {% set version = "1.1.0" %}
  15.     {% block stylesheets %}
  16.         <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" />
  17.         {{ encore_entry_link_tags('coss/theme/plugins/custom/fullcalendar/fullcalendar.bundle_css') }}
  18.         {{ encore_entry_link_tags('coss/theme/plugins/global/plugins.bundle_css') }}
  19.         {{ encore_entry_link_tags('coss/theme/plugins/custom/prismjs/prismjs.bundle_css') }}
  20.         {{ encore_entry_link_tags('coss/theme/css/style.bundle') }}
  21.         {{ encore_entry_link_tags('coss/css/custom') }}
  22.     {% endblock %}
  23.     <link rel="apple-touch-icon" href="{{ asset('build/coss/img/apple-touch-icon.png') }}">
  24.     <link rel="icon" type="image/x-icon" href="{{ asset('build/coss/img/icon.png') }}" />
  25. </head>
  26. <body id="kt_body" class="{% block theme %}{% endblock %} header-fixed header-mobile-fixed subheader-enabled page-loading">
  27. {% block body %}
  28.     {% block layout %}{% endblock %}
  29. {% endblock %}
  30. {% block javascripts %}
  31.     {# <script>var HOST_URL = "https://preview.keenthemes.com/metronic/theme/html/tools/preview";</script> #}
  32.     <script>var KTAppSettings = { "breakpoints": { "sm": 576, "md": 768, "lg": 992, "xl": 1200, "xxl": 1200 }, "colors": { "theme": { "base": { "white": "#ffffff", "primary": "#0BB783", "secondary": "#E5EAEE", "success": "#1BC5BD", "info": "#8950FC", "warning": "#FFA800", "danger": "#F64E60", "light": "#F3F6F9", "dark": "#212121" }, "light": { "white": "#ffffff", "primary": "#D7F9EF", "secondary": "#ECF0F3", "success": "#C9F7F5", "info": "#EEE5FF", "warning": "#FFF4DE", "danger": "#FFE2E5", "light": "#F3F6F9", "dark": "#D6D6E0" }, "inverse": { "white": "#ffffff", "primary": "#ffffff", "secondary": "#212121", "success": "#ffffff", "info": "#ffffff", "warning": "#ffffff", "danger": "#ffffff", "light": "#464E5F", "dark": "#ffffff" } }, "gray": { "gray-100": "#F3F6F9", "gray-200": "#ECF0F3", "gray-300": "#E5EAEE", "gray-400": "#D6D6E0", "gray-500": "#B5B5C3", "gray-600": "#80808F", "gray-700": "#464E5F", "gray-800": "#1B283F", "gray-900": "#212121" } }, "font-family": "Poppins" };</script>
  33.     {{ encore_entry_script_tags('app') }}
  34.     {{ encore_entry_script_tags('coss/theme/plugins/global/plugins.bundle_js') }}
  35.     {{ encore_entry_script_tags('coss/theme/plugins/custom/prismjs/prismjs.bundle_js') }}
  36.     {{ encore_entry_script_tags('coss/theme/js/scripts.bundle') }}
  37.     {{ encore_entry_script_tags('coss/theme/plugins/custom/fullcalendar/fullcalendar.bundle_js') }}
  38.     {{ encore_entry_script_tags('coss/theme/js/pages/widgets') }}
  39.     {{ encore_entry_script_tags('coss/js/custom') }}
  40. {% endblock %}
  41. </body>
  42. </html>