templates/index.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <meta charset="utf-8">
  5.   <title>Cud</title>
  6.   <base href="/">
  7.   <meta name="viewport" content="width=device-width, initial-scale=1">
  8.   <link rel="icon" type="image/x-icon" href="favicon.ico">
  9.   <!-- Bootstrap CSS -->
  10.   <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">  <!-- jQuery first, then Popper.js, then Bootstrap JS -->
  11.   {{ encore_entry_link_tags('app') }}
  12.   <!-- <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script> -->
  13.   <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
  14.   <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
  15.   {{ encore_entry_script_tags('app') }}
  16. </head>
  17. <body>
  18. {% include "header/header.html.twig" %}
  19.   {% block breadcrumbs %}
  20.       
  21.   {% endblock %}
  22. <!-- Cookie Consent by FreePrivacyPolicy.com https://www.FreePrivacyPolicy.com -->
  23. <script type="text/javascript" src="//www.freeprivacypolicy.com/public/cookie-consent/4.1.0/cookie-consent.js" charset="UTF-8"></script>
  24. <script type="text/javascript" charset="UTF-8">
  25. document.addEventListener('DOMContentLoaded', function () {
  26. cookieconsent.run({"notice_banner_type":"headline","consent_type":"express","palette":"dark","language":"es","page_load_consent_levels":["strictly-necessary"],"notice_banner_reject_button_hide":false,"preferences_center_close_button_hide":false,"page_refresh_confirmation_buttons":false,"website_name":"https://cud.devecomputer.com/","website_privacy_policy_url":"https://cud.devecomputer.com/politica-de-privacidad"});
  27. });
  28. </script>
  29. <!-- End Cookie Consent by FreePrivacyPolicy.com https://www.FreePrivacyPolicy.com -->
  30.   {% block body %}
  31.       
  32.   {% endblock %}
  33. {% include "footer/footer.html.twig" %}
  34. </body>
  35. </html>
  36. {# <!DOCTYPE html>
  37. <html>
  38.     <head>
  39.         <meta charset="UTF-8">
  40.         <title>{% block title %}Welcome!{% endblock %}</title>
  41.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>"> #}
  42.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  43.         {# {% block stylesheets %}
  44.             {{ encore_entry_link_tags('app') }}
  45.         {% endblock %}
  46.         {% block javascripts %}
  47.             {{ encore_entry_script_tags('app') }}
  48.         {% endblock %}
  49.     </head>
  50.     <body>
  51.         {% block body %}{% endblock %}
  52.     </body>
  53. </html> #}