templates/base_operario.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <link rel="shortcut icon" href="/imagenes/favicon.ico">
  6.         <title>{% block title %}Javier Ramos{% endblock %}</title>
  7.         {# Run `composer require symfony/webpack-encore-bundle`
  8.            and uncomment the following Encore helpers to start using Symfony UX #}
  9.         <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" />
  10.         <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  11.         {% block stylesheets %}
  12.             {{ encore_entry_link_tags('app') }}
  13.         {% endblock %}
  14.         {% block javascripts %}
  15.             {{ encore_entry_script_tags('app') }}
  16.         {% endblock %}
  17.                 <!--begin::Global Config(global config for global JS scripts)-->
  18.             <script>
  19.                 var KTAppSettings = {
  20.                     "breakpoints": {
  21.                         "sm": 576,
  22.                         "md": 768,
  23.                         "lg": 992,
  24.                         "xl": 1200,
  25.                         "xxl": 1400
  26.                     },
  27.                     "colors": {
  28.                         "theme": {
  29.                             "base": {
  30.                                 "white": "#ffffff",
  31.                                 "primary": "#3699FF",
  32.                                 "secondary": "#E5EAEE",
  33.                                 "success": "#1BC5BD",
  34.                                 "info": "#8950FC",
  35.                                 "warning": "#FFA800",
  36.                                 "danger": "#F64E60",
  37.                                 "light": "#E4E6EF",
  38.                                 "dark": "#181C32"
  39.                             },
  40.                             "light": {
  41.                                 "white": "#ffffff",
  42.                                 "primary": "#E1F0FF",
  43.                                 "secondary": "#EBEDF3",
  44.                                 "success": "#C9F7F5",
  45.                                 "info": "#EEE5FF",
  46.                                 "warning": "#FFF4DE",
  47.                                 "danger": "#FFE2E5",
  48.                                 "light": "#F3F6F9",
  49.                                 "dark": "#D6D6E0"
  50.                             },
  51.                             "inverse": {
  52.                                 "white": "#ffffff",
  53.                                 "primary": "#ffffff",
  54.                                 "secondary": "#3F4254",
  55.                                 "success": "#ffffff",
  56.                                 "info": "#ffffff",
  57.                                 "warning": "#ffffff",
  58.                                 "danger": "#ffffff",
  59.                                 "light": "#464E5F",
  60.                                 "dark": "#ffffff"
  61.                             }
  62.                         },
  63.                         "gray": {
  64.                             "gray-100": "#F3F6F9",
  65.                             "gray-200": "#EBEDF3",
  66.                             "gray-300": "#E4E6EF",
  67.                             "gray-400": "#D1D3E0",
  68.                             "gray-500": "#B5B5C3",
  69.                             "gray-600": "#7E8299",
  70.                             "gray-700": "#5E6278",
  71.                             "gray-800": "#3F4254",
  72.                             "gray-900": "#181C32"
  73.                         }
  74.                     },
  75.                     "font-family": "Poppins"
  76.                 };
  77.             </script>
  78.             <script src="{{ asset('bundles/fosjsrouting/js/router.min.js') }}"></script>
  79.             <script src="{{ path('fos_js_routing_js', { callback: 'fos.Router.setData' }) }}"></script>
  80.         <!--end::Global Config-->
  81.     </head>
  82.         <body id="kt_body" class="header-fixed header-mobile-fixed subheader-enabled aside-minimize-hoverable">
  83.         {#{{ include("includes/layout/_extras/offcanvas/quick-panel.html.twig") }}#}
  84.         {{ include('includes/layout/_page-loader.html.twig') }}
  85.         <!--begin::Main-->
  86.         {{ include('includes/layout/_header-mobile.html.twig') }}
  87.         <div class="d-flex flex-column flex-root">
  88.             <!--begin::Wrapper-->
  89.             <div class="d-flex flex-column flex-row-fluid wrapper" id="kt_wrapper">
  90.                 {#{{ include('includes/partials/_hr_sparkles.html.twig') }}#}
  91.                 {{ include('includes/layout/_header.html.twig') }}
  92.                 <!--begin::Content-->
  93.                 <div class="content d-flex flex-column flex-column-fluid" id="kt_content">
  94.                     {{ include('includes/partials/breadcrump.html.twig', {'text' : text}) }}
  95.                     {% block body %}
  96.                     {% endblock %}
  97.                 </div>
  98.                 <!--end::Content-->
  99.                 {{ include('includes/layout/_footer.html.twig') }}
  100.             </div>
  101.             <!--end::Wrapper-->
  102.         </div>
  103.         <!--end::Main-->
  104.         {#{{ include('includes/layout/layout.html.twig') }}#}
  105.         {{ include('includes/layout/_extras/scrolltop.html.twig') }}
  106.     </body>
  107. </html>