templates/base_out.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.             
  72.         </style>
  73.     
  74.         <link href="{{ asset('styles/cheatsheet.css') }}" rel="stylesheet">
  75.         {% block stylesheets %}
  76.             {{ encore_entry_link_tags('app') }}
  77.         {% endblock %}
  78.         {% block javascripts %}
  79.             {{ encore_entry_script_tags('app') }}
  80.         {% endblock %}
  81.     </head>
  82.     <body class="bg-body-tertiary">
  83.       <div class="container-fluid cabecera">
  84.             <div class="container" >
  85.                 <div id="logo">
  86.                     <div id="lineas">
  87.                         <div id="azul"></div>
  88.                         <div id="rojo"></div>
  89.                     </div>
  90.                     <span>Registro Nacional de Puntos de Cultura Comunitaria</span>
  91.                 </div>
  92.             </div>
  93.       </div>
  94.       <!-- n1: containers -->
  95.       <div class="container-fluid">
  96.         <!-- n2: User -->
  97.         <div class="container ">
  98.             <div class="row">
  99.                 <div class="col datos">
  100.                 </div>
  101.             </div>
  102.         </div>
  103.         <!-- n2: Content Principal -->
  104.         <div class="container" >
  105.           {% for type, messages in app.flashes %}
  106.                     {% for message in messages %}
  107.                         <div class="alert alert-{{type}} alert-dismissible fade show" role="alert">
  108.                           <strong>
  109.                                 {{type 
  110.                                     |replace(
  111.                                         {
  112.                                             'warning': '',
  113.                                             'success': '',
  114.                                             'danger': ''
  115.                                         }
  116.                                         ) 
  117.                                     | raw
  118.                                 }}
  119.                             </strong> 
  120.                             {{ message | raw }}
  121.                           <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
  122.                         </div>
  123.                     
  124.                     {% endfor %}
  125.                 {% endfor %}
  126.           {% block body_all %}
  127.             <div class="row">
  128.               <div class="col-9">
  129.                 
  130.                 {% block body_c9 %}{% endblock %}
  131.                 <hr class="mt-4 mb-4">
  132.               </div>
  133.             
  134.               <!-- n2.2: Botonera Derecha -->
  135.               <div class="col-3">
  136.                 {% block body_c3 %}
  137.                 {% endblock %}
  138.               </div>  
  139.             </div>
  140.           {% endblock %}
  141.         </div>
  142.         <!-- n2: Footer -->
  143.         <div id="footer" style="margin-top:30px;">
  144.           <div class="container">
  145.           <a href="https://www.cultura.gob.cl/" target="_blank"><img id="logo-footer" src="{{ asset('img/mincap.png') }}" alt=""></a>
  146.           <p><strong><a href="https://www.cultura.gob.cl/" target="_blank">Ministerio de las Culturas, las Artes y el Patrimonio</a></strong><br>
  147.             <a href="https://www.gob.cl/" target="_blank">Gobierno de Chile</a><br>
  148.             Valparaíso: Plaza Sotomayor 233.<br>
  149.             Santiago: Paseo Ahumada 48, pisos 4, 5, 6, 7,8 y 11.<br>
  150.             Contáctanos: <a href="https://siac.cultura.gob.cl/formulariosiac" target="_blank">Formulario de atención ciudadana</a><br>
  151.             <a href="https://www.cultura.gob.cl/politica-de-privacidad/" target="_blank">Política de Privacidad </a>
  152.           </p>
  153.         </div>
  154.       </div>
  155.         
  156.       <script src="{{ asset('js/bootstrap.bundle.min.js') }}"></script>
  157.       <script src="{{ asset('js/cheatsheet.js') }}"></script>
  158.       <script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
  159.   
  160.       {% block javascript_end_body %}{% endblock %}
  161.       
  162.         
  163.     </body>
  164. </html>