templates/layout/master.html.twig line 1

  1. <!DOCTYPE html>
    <html {{ theme.printHtmlAttributes('html') | raw }}>
    
    <head>
      <base href="" />
      <title>{% block page_title %}{% endblock %} - Cloud Management System</title>
    
      <meta http-equiv="Access-Control-Allow-Origin" content="*" /> 
      <meta http-equiv="Access-Control-Allow-Methods" content="GET, POST" /> 
      <meta http-equiv="Content-Type" content="application/json" /> 
      
      <meta charset="utf-8" />
      <meta name="description" content="" />
      <meta name="keywords" content="" />
      <meta name="viewport" content="width=device-width, initial-scale=1" />
      <meta property="og:locale" content="es_MX" />
      <meta property="og:type" content="article" />
      <meta property="og:title" content="" />
      <link rel="canonical" href="" />
    
      {{ theme.includeFavicon() | raw }}
    
      {{ theme.includeFonts() | raw }}
      {% block stylesheets %}
      {# {{ encore_entry_link_tags('app') }} #}
    
      <!--begin::Global Stylesheets Bundle(used by all pages)-->
      {% for path in theme.getGlobalAssets('css') %}
      <link rel="stylesheet" href="{{ theme.asset(path) }}">
      {% endfor %}
    
      <!--begin::Vendor Stylesheets(used by this page)-->
      {% for path in theme.getVendors('css') %}
      <link rel="stylesheet" href="{{ theme.asset(path) }}">
      {% endfor %}
    
      <!--begin::Custom Stylesheets(optional)-->
      {% for path in theme.getCustomCss() %}
      <link rel="stylesheet" href="{{ theme.asset(path) }}">
      {% endfor %}
    
      {% endblock %}
    </head>
    
    <body id="kt_body" class="header-fixed header-tablet-and-mobile-fixed aside-fixed aside-secondary-disabled">
    
      {% include 'partials/theme-mode/_init.html.twig' %}
    
      {% block layout %}{% endblock %}
    
      {% block javascripts %}
    
      {# {{ encore_entry_script_tags('app') }} #}
    
      <!--begin::Global Javascript Bundle(mandatory for all pages)-->
      {% for path in theme.getGlobalAssets() %}
      <script src="{{ theme.asset(path) }}"></script>
      {% endfor %}
    
      <!--begin::Vendors Javascript(used by this page)-->
      {% for path in theme.getVendors('js') %}
      <script src="{{ theme.asset(path) }}"></script>
      {% endfor %}
    
      <!--begin::Custom Javascript(optional)-->
      {% for path in theme.getCustomJs() %}
      <script src="{{ theme.asset(path) }}"></script>
      {% endfor %}
    
    
      {% endblock %}
    </body>
    
    </html>
    
    <?php 
      header("Access-Control-Allow-Origin: *"); 
      header('Access-Control-Allow-Methods', 'GET, POST');
      header("Content-Type: application/json");
     ?>