templates/base_organizacion.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html lang="en" data-bs-theme="auto">
  3.     <head>
  4.         <link rel="canonical" href="https://getbootstrap.com/docs/5.3/examples/cheatsheet/">
  5.         <script src="https://kit.fontawesome.com/db3c9f6c50.js" crossorigin="anonymous"></script>
  6.         <link href="{{ asset('styles/bootstrap.min.css') }}" rel="stylesheet">
  7.         <style>
  8.             .bd-placeholder-img {
  9.                 font-size: 1.125rem;
  10.                 text-anchor: middle;
  11.                 -webkit-user-select: none;
  12.                 -moz-user-select: none;
  13.                 user-select: none;
  14.             }
  15.             @media (min-width: 768px) {
  16.                 .bd-placeholder-img-lg {
  17.                 font-size: 3.5rem;
  18.                 }
  19.             }
  20.             .b-example-divider {
  21.                 width: 100%;
  22.                 height: 3rem;
  23.                 background-color: rgba(0, 0, 0, .1);
  24.                 border: solid rgba(0, 0, 0, .15);
  25.                 border-width: 1px 0;
  26.                 box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  27.             }
  28.             .b-example-vr {
  29.                 flex-shrink: 0;
  30.                 width: 1.5rem;
  31.                 height: 100vh;
  32.             }
  33.             .bi {
  34.                 vertical-align: -.125em;
  35.                 fill: currentColor;
  36.             }
  37.             .nav-scroller {
  38.                 position: relative;
  39.                 z-index: 2;
  40.                 height: 2.75rem;
  41.                 overflow-y: hidden;
  42.             }
  43.             .nav-scroller .nav {
  44.                 display: flex;
  45.                 flex-wrap: nowrap;
  46.                 padding-bottom: 1rem;
  47.                 margin-top: -1px;
  48.                 overflow-x: auto;
  49.                 text-align: center;
  50.                 white-space: nowrap;
  51.                 -webkit-overflow-scrolling: touch;
  52.             }
  53.             .btn-bd-primary {
  54.                 --bd-violet-bg: #712cf9;
  55.                 --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
  56.                 --bs-btn-font-weight: 600;
  57.                 --bs-btn-color: var(--bs-white);
  58.                 --bs-btn-bg: var(--bd-violet-bg);
  59.                 --bs-btn-border-color: var(--bd-violet-bg);
  60.                 --bs-btn-hover-color: var(--bs-white);
  61.                 --bs-btn-hover-bg: #6528e0;
  62.                 --bs-btn-hover-border-color: #6528e0;
  63.                 --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
  64.                 --bs-btn-active-color: var(--bs-btn-hover-color);
  65.                 --bs-btn-active-bg: #5a23c8;
  66.                 --bs-btn-active-border-color: #5a23c8;
  67.             }
  68.             .bd-mode-toggle {
  69.                 z-index: 1500;
  70.             }
  71.         </style>
  72.         <link href="{{ asset('styles/cheatsheet.css') }}" rel="stylesheet">
  73.         {% block stylesheets %}
  74.             {{ encore_entry_link_tags('app') }}
  75.         {% endblock %}
  76.         {% block javascripts %}
  77.             {{ encore_entry_script_tags('app') }}
  78.         {% endblock %}
  79.         <!-- Google tag (gtag.js) -->
  80.         <script async src="https://www.googletagmanager.com/gtag/js?id=G-CJVF4VC35G"></script>
  81.         <script>
  82.             window.dataLayer = window.dataLayer || [];
  83.             function gtag(){dataLayer.push(arguments);}
  84.             gtag('js', new Date());
  85.             gtag('config', 'G-CJVF4VC35G');
  86.         </script>
  87.     </head>
  88.     <body class="bg-body-tertiary">
  89.       <!-- n1: Titulo -->
  90.       <div class="container-fluid cabecera">
  91.             <div class="container" >
  92.                 <div id="logo">
  93.                     <div id="lineas">
  94.                         <div id="azul"></div>
  95.                         <div id="rojo"></div>
  96.                     </div>
  97.                     <span>Registro Nacional de Puntos de Cultura Comunitaria</span>
  98.                 </div>
  99.             </div>
  100.       </div>
  101.       <!-- n1: containers -->
  102.       <div class="container-fluid">
  103.         <!-- n2: User -->
  104.         <div class="container ">
  105.             <div class="row">
  106.                 <div class="col datos">
  107.                 </div>
  108.             </div>
  109.         </div>
  110.         <!-- n2: Content Principal -->
  111.         <div class="container">
  112.           {% for type, messages in app.flashes %}
  113.                     {% for message in messages %}
  114.                         <div class="alert alert-{{type}} alert-dismissible fade show" role="alert">
  115.                           <strong>
  116.                                 {{type
  117.                                     |replace(
  118.                                         {
  119.                                             'warning': '',
  120.                                             'success': '',
  121.                                             'danger': ''
  122.                                         }
  123.                                         )
  124.                                     | raw
  125.                                 }}
  126.                             </strong>
  127.                             {{ message | raw }}
  128.                           <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
  129.                         </div>
  130.                     {% endfor %}
  131.                 {% endfor %}
  132.           {% block body_all %}
  133.             <div class="row">
  134.             <!-- n2.2: Botonera Derecha -->
  135.               <div class="col-12">
  136.                 {% block body_c3 %}
  137.                 {% endblock %}
  138.               </div>
  139.               <div class="col-12">
  140.                 {% block body_c9 %}{% endblock %}
  141.                   <hr class="mt-4 mb-4">
  142.               </div>
  143.             </div>
  144.           {% endblock %}
  145.         </div>
  146.         <!-- n2: Footer -->
  147.         <div id="footer">
  148.           <div class="container">
  149.           <a href="https://www.cultura.gob.cl/" target="_blank"><img id="logo-footer" src="{{ asset('img/mincap.png') }}" alt=""></a>
  150.           <p><strong><a href="https://www.cultura.gob.cl/" target="_blank">Ministerio de las Culturas, las Artes y el Patrimonio</a></strong><br>
  151.             <a href="https://www.gob.cl/" target="_blank">Gobierno de Chile</a><br>
  152.             Valparaíso: Plaza Sotomayor 233.<br>
  153.             Santiago: Paseo Ahumada 48, pisos 4, 5, 6, 7,8 y 11.<br>
  154.             Contáctanos: <a href="https://siac.cultura.gob.cl/formulariosiac" target="_blank">Formulario de atención ciudadana</a><br>
  155.             <a href="https://www.cultura.gob.cl/politica-de-privacidad/" target="_blank">Política de Privacidad </a>
  156.           </p>
  157.         </div>
  158.       </div>
  159.         <!-- MODAL SPINNER INICIO-->
  160.         <a class="btn btn-primary" id="btn_spinner" data-toggle="modal" data-target="#modalFormSpinner" style="display:none">activar spinner</a>
  161.         <hr>
  162.         <div id="modalFormSpinner" class="modal" tabindex="-1" role="dialog" data-keyboard="false" data-backdrop="static">
  163.             <div class="modal-dialog modal-sm" role="document" >
  164.                 <div class="modal-content" style="width: 150px;text-align:center;">
  165.                     <div class="modal-header" style="display:none">
  166.                         <button id="btn-close-spinner" type="button" class="close" data-dismiss="modal">&times;</button>
  167.                         <h4 class="modal-title"></h4>
  168.                     </div>
  169.                     <div class="modal-body" id="contenedorModalSpinner" >
  170.                         <div class="loader" ></div>
  171.                         <br>
  172.                         <div>Procesando...</div>
  173.                         <br>
  174.                     </div>
  175.                 </div>
  176.             </div>
  177.         </div>
  178.         <!-- MODAL SPINNER FIN-->
  179.       <script src="{{ asset('js/bootstrap.bundle.min.js') }}"></script>
  180.       <script src="{{ asset('js/cheatsheet.js') }}"></script>
  181.       <script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
  182.       {% block javascript_end_body %}{% endblock %}
  183.       <script type="text/javascript">
  184.             const   modalInProccess = async function(modo="activar",divs) {
  185.                 if (modo=="activar"){
  186.                     if (divs!=""){
  187.                         await $('#'+divs).hide();
  188.                     }
  189.                     await $('#btn_spinner').click();
  190.                     console.log('in proccess activado');
  191.                 }
  192.                 if (modo=="desactivar"){
  193.                     await  $('#btn-close-spinner').click();
  194.                     if (divs!=""){
  195.                         await $('#'+divs).show();
  196.                     }
  197.                     console.log('in proccess desactivado');
  198.                 }
  199.                 return true;
  200.             }
  201.             function mostrarAlerta(titulo, mensaje){
  202.                 $('#modal-alerta .modal-title').html(titulo);
  203.                 $('#modal-alerta .modal-body').html(mensaje);
  204.                 $('#modal-alerta').modal('show');
  205.             }
  206.             function  cerrarModalAlerta(){
  207.                 $("#modal-alerta .close").click();
  208.             }
  209.         </script>
  210.     </body>
  211. </html>