templates/base.html.twig line 40

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <!-- Tell the browser to be responsive to screen width -->
  7.         <meta name="viewport" content="width=device-width, initial-scale=1">
  8.         <meta name="description" content="">
  9.         <meta name="author" content="">
  10.         <!-- Favicon icon -->
  11.         <link rel="icon" type="image/png" sizes="16x16" href="{{ asset('assets/images/favicon.png') }}">
  12.         <title>
  13.             {% if enviroment != 'PROD' %}
  14.                 [{{ enviroment }}]
  15.             {% endif %}
  16.             {% block title %}
  17.                 {{ 'Catálogo Online'|trans }} - Addvance3d{% endblock %}
  18.         </title>
  19.         {% block stylesheets %}
  20.             {{ encore_entry_link_tags('app') }}
  21.         {% endblock %}
  22.         {% block stylesheets_own %}
  23.         {% endblock %}
  24.         {% block javascripts %}
  25.             {{ encore_entry_script_tags('app') }}
  26.             <script src="{{ asset('js/jquery.slimscroll.js') }}"></script>
  27.             <script src="{{ asset('js/sidebarmenu.js') }}"></script>
  28.         {% endblock %}
  29.     </head>
  30.     <body id="landing" class="bg-primary">
  31.         {% block body %}
  32.             <!-- ============================================================== -->
  33.             <!-- Main wrapper - style you can find in pages.scss -->
  34.             <!-- ============================================================== -->
  35.             <div id="main-wrapper">
  36.                 <nav class="navbar fixed-top navbar-expand-lg bg-body-tertiary lp_topbar">
  37.                     <div class="container">
  38.                         <a class="navbar-brand" href="#">
  39.                             <img src="/assets/images/logo-white.png" alt="" width="60" height="40">
  40.                         </a>
  41.                         <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
  42.                             <span class="navbar-toggler-icon"></span>
  43.                         </button>
  44.                         <div class="collapse navbar-collapse justify-content-end" id="navbarNav">
  45.                         <ul class="navbar-nav">
  46.                             <li class="nav-item t1">
  47.                                 <a class="nav-link" aria-current="page" href="#benefits">{{'Beneficios'|trans}}</a>
  48.                             </li>
  49.                             <li class="nav-item t1">
  50.                                 <a class="nav-link" href="#features">{{'Características'|trans}}</a>
  51.                             </li>
  52.                             <li class="nav-item">
  53.                                 <a class="nav-link" href="#solutions">{{'Soluciones'|trans}}</a>
  54.                             </li>
  55.                             <li class="nav-item t2">
  56.                                 <a href="#" id="openContact" class="nav-link">{{'Contacte con nosotros'|trans}}</a>
  57.                             </li>
  58.                             <li class="nav-item t2 bg-white mt-2 mt-sm-0">
  59.                                 <a href="{{path('app_login')}}" class="nav-link text-primary">{{'Iniciar sesión'|trans}}</a>
  60.                             </li>
  61.                         </ul>
  62.                         </div>
  63.                     </div>
  64.                 </nav>
  65.                 <!-- ============================================================== -->
  66.                 <!-- Page wrapper  -->
  67.                 <!-- ============================================================== -->
  68.                 <div class="landing-page-wrapper">
  69.                     <!-- ============================================================== -->
  70.                     <!-- Bread crumb and right sidebar toggle -->
  71.                     <!-- ============================================================== -->
  72.                     <!-- ============================================================== -->
  73.                     <!-- End Bread crumb and right sidebar toggle -->
  74.                     <!-- ============================================================== -->
  75.                     {% block contenedor_principal %}{% endblock %}
  76.                 </div>
  77.                 <!-- ============================================================== -->
  78.                 <!-- End Page wrapper  -->
  79.                 <!-- ============================================================== -->
  80.             </div>
  81.             <!-- ============================================================== -->
  82.             <!-- End Wrapper -->
  83.             <!-- ============================================================== -->
  84.         {% endblock %}
  85.         {% block javascript_own %}
  86.         {% endblock %}
  87.     </body>
  88. </html>