templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale }}">
  3. <head>
  4.     <meta charset="UTF-8"/>
  5.     <meta name="viewport" content="width=device.width, initial-scale=1">
  6.     <title>{% block title %}Asvin LAF{% endblock %}</title>
  7.     {% block stylesheets %}
  8.         <link rel="icon" type="image/x-icon" href="{{ asset('build/images/favicon.ico') }}"/>
  9.         {# 'app' must match the first argument to addEntry() in webpack.config.js #}
  10.         {{ encore_entry_link_tags('app') }}
  11.         <!-- Renders a link tag (if your module requires any CSS) -->
  12.         {#             <link rel="stylesheet" href="/build/style_app.css"> #}
  13.     {% endblock %}
  14.     {% block javascripts %}
  15.         <!-- Translations -->
  16.         <script>
  17.             let sorting_updated = "{{ "msg.sorting_updated"|trans }}";
  18.             let sorting_failed = "{{ "msg.sorting_failed"|trans }}";
  19.         </script>
  20.         {{ encore_entry_script_tags('app') }}
  21.         <!-- Renders app.js & a webpack runtime.js file
  22.             <script src="/build/runtime.js" defer></script>
  23.             <script src="/build/app.js" defer></script>
  24.             See note below about the "defer" attribute -->
  25.     {% endblock %}
  26. </head>
  27. <body>
  28. <!-- ======= Header ======= -->
  29. <header id="header" class="fixed-top">
  30.     <div class="container d-flex align-items-center justify-content-between">
  31.         <a class="logo me-auto me-lg-0"
  32.            href="{{ path('homepage', {'_locale': app.request.attributes.get('_locale')}) }}">
  33.             <img src="{{ asset('build/images/logo.png') }}" style="max-height: 40px;" alt="" class="img-fluid">
  34.         </a>
  35.         <div class="d-flex align-items-center justify-content-between">
  36.             {% include("top_navbar.html.twig") %}
  37.             <div class="header-social-links d-flex">
  38.                 <a href="https://twitter.com/asvin_iot" target="_blank" class="twitter"><i class="bi bi-twitter"></i></a>
  39.                 <a href="https://de-de.facebook.com/asvinio" target="_blank" class="facebook"><i class="bi bi-facebook"></i></a>
  40.                 <a href="https://www.linkedin.com/company/asvin-gmbh" target="_blank" class="instagram"><i class="bi bi-instagram"></i></a>
  41.                 <a href="https://www.youtube.com/channel/UCpP9D_f6y2vtrJYTnUfD0dA" target="_blank" class="google-plus"><i class="bi bi-youtube"></i></a>
  42.             </div>
  43.         </div>
  44.     </div>
  45. </header>
  46. <!-- End Header -->
  47. <main id="main">
  48.     <!-- ======= Breadcrumbs ======= -->
  49.     <section id="breadcrumbs" class="breadcrumbs">
  50.         <div class="container">
  51.             <div class="d-flex justify-content-between align-items-center">
  52.                 {% block breadcrumbs %}
  53.                 {% endblock %}
  54.             </div>
  55.         </div>
  56.     </section>
  57.     <!-- End Breadcrumbs -->
  58.     <!-- ======= Flash Messages ======= -->
  59.     <div class="container pt-sm-2">
  60.         <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
  61.             <symbol id="success-fill" fill="currentColor" viewBox="0 0 16 16">
  62.                 <path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"/>
  63.             </symbol>
  64.             <symbol id="info-fill" fill="currentColor" viewBox="0 0 16 16">
  65.                 <path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/>
  66.             </symbol>
  67.             <symbol id="warning-fill" fill="currentColor" viewBox="0 0 16 16">
  68.                 <path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/>
  69.             </symbol>
  70.             <symbol id="danger-fill" fill="currentColor" viewBox="0 0 16 16">
  71.                 <path d="M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z"/>
  72.             </symbol>
  73.         </svg>
  74.         {% for type, messages in app.flashes %}
  75.             {% for message in messages %}
  76.                 <div class="alert alert-{{ type }} alert-dismissible fade show d-flex align-items-center" role="alert">
  77.                     <svg class="bi flex-shrink-0 me-2" width="24" height="24" role="img" aria-label="Info:">
  78.                         <use xlink:href="#{{ type }}-fill"/>
  79.                     </svg>
  80.                     <div>
  81.                         {{ message }}
  82.                     </div>
  83.                     <button type="button" class="btn-close" data-bs-dismiss="alert"
  84.                             aria-label="{{ "nav.close" | trans }}"></button>
  85.                 </div>
  86.             {% endfor %}
  87.         {% endfor %}
  88.         <div id="ajax_msg" style="display: none;"></div>
  89.     </div>
  90.     <!-- End Flash Messages -->
  91.     <!-- ======= Services Section ======= -->
  92.     {% block section %}
  93.         <section class="blog">
  94.             <div class="container" data-aos="fade-up">
  95.                 {% block body %}
  96.                 {% endblock %}
  97.             </div>
  98.         </section>
  99.     {% endblock %}
  100.     <!-- End Services Section -->
  101. </main>
  102. <!-- ======= Footer ======= -->
  103. <footer id="footer">
  104.     {#    <div class="footer-top"> #}
  105.     {#        <div class="container"> #}
  106.     {#            <div class="row"> #}
  107.     {#                <div class="col-lg-3 col-md-6 footer-contact"> #}
  108.     {#                    <h3>Asvin</h3> #}
  109.     {#                    <p> #}
  110.     {#                        Schulze-Delitsch-Strasse 16 <br> #}
  111.     {#                        70565 Stuttgart<br> #}
  112.     {#                        Deutschland <br><br> #}
  113.     {#                        <strong>Phone:</strong> +1 5589 55488 55<br> #}
  114.     {#                        <strong>Email:</strong> info@example.com<br> #}
  115.     {#                    </p> #}
  116.     {#                </div> #}
  117.     {#                <div class="col-lg-2 col-md-6 footer-links"> #}
  118.     {#                </div> #}
  119.     {#                <div class="col-lg-3 col-md-6 footer-links"> #}
  120.     {#                </div> #}
  121.     {#                <div class="col-lg-4 col-md-6 footer-newsletter"> #}
  122.     {#                </div> #}
  123.     {#            </div> #}
  124.     {#        </div> #}
  125.     {#    </div> #}
  126.     <div class="container d-md-flex py-4">
  127.         <div class="me-md-auto text-center text-md-start">
  128.             <div class="copyright">
  129.                 {{ 'general.copyright' | trans }} &copy; {{ "now"|date("Y") }}
  130.                 <strong><span>{{ 'general.company' | trans }}</span></strong>. All Rights Reserved | V2.00
  131.             </div>
  132.             <div class="credits">
  133.                 <!-- All the links in the footer should remain intact. -->
  134.                 <!-- You can delete the links only if you purchased the pro version. -->
  135.                 <!-- Licensing information: https://bootstrapmade.com/license/ -->
  136.                 <!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/company-free-html-bootstrap-template/ -->
  137.                 Designed by <a href="https://bootstrapmade.com/" target="_blank">BootstrapMade</a>
  138.             </div>
  139.         </div>
  140.         <div class="social-links text-center text-md-right pt-3 pt-md-0">
  141.             <a href="https://twitter.com/asvin_iot" target="_blank" class="twitter"><i class="bx bxl-twitter"></i></a>
  142.             <a href="https://de-de.facebook.com/asvinio" target="_blank" class="facebook"><i class="bx bxl-facebook"></i></a>
  143.             <a href="https://www.linkedin.com/company/asvin-gmbh" target="_blank" class="instagram"><i class="bx bxl-instagram"></i></a>
  144. {#            <a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>#}
  145.             <a href="https://www.youtube.com/channel/UCpP9D_f6y2vtrJYTnUfD0dA" target="_blank" class="google-plus"><i class="bx bxl-youtube"></i></a>
  146.         </div>
  147.     </div>
  148. </footer><!-- End Footer -->
  149. <a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i
  150.             class="bi bi-arrow-up-short"></i></a>
  151. </body>
  152. </html>