<!DOCTYPE html><html lang="{{ app.request.locale }}"><head> <meta charset="UTF-8"/> <meta name="viewport" content="width=device.width, initial-scale=1"> <title>{% block title %}Asvin LAF{% endblock %}</title> {% block stylesheets %} <link rel="icon" type="image/x-icon" href="{{ asset('build/images/favicon.ico') }}"/> {# 'app' must match the first argument to addEntry() in webpack.config.js #} {{ encore_entry_link_tags('app') }} <!-- Renders a link tag (if your module requires any CSS) --> {# <link rel="stylesheet" href="/build/style_app.css"> #} {% endblock %} {% block javascripts %} <!-- Translations --> <script> let sorting_updated = "{{ "msg.sorting_updated"|trans }}"; let sorting_failed = "{{ "msg.sorting_failed"|trans }}"; </script> {{ encore_entry_script_tags('app') }} <!-- Renders app.js & a webpack runtime.js file <script src="/build/runtime.js" defer></script> <script src="/build/app.js" defer></script> See note below about the "defer" attribute --> {% endblock %}</head><body><!-- ======= Header ======= --><header id="header" class="fixed-top"> <div class="container d-flex align-items-center justify-content-between"> <a class="logo me-auto me-lg-0" href="{{ path('homepage', {'_locale': app.request.attributes.get('_locale')}) }}"> <img src="{{ asset('build/images/logo.png') }}" style="max-height: 40px;" alt="" class="img-fluid"> </a> <div class="d-flex align-items-center justify-content-between"> {% include("top_navbar.html.twig") %} <div class="header-social-links d-flex"> <a href="https://twitter.com/asvin_iot" target="_blank" class="twitter"><i class="bi bi-twitter"></i></a> <a href="https://de-de.facebook.com/asvinio" target="_blank" class="facebook"><i class="bi bi-facebook"></i></a> <a href="https://www.linkedin.com/company/asvin-gmbh" target="_blank" class="instagram"><i class="bi bi-instagram"></i></a> <a href="https://www.youtube.com/channel/UCpP9D_f6y2vtrJYTnUfD0dA" target="_blank" class="google-plus"><i class="bi bi-youtube"></i></a> </div> </div> </div></header><!-- End Header --><main id="main"> <!-- ======= Breadcrumbs ======= --> <section id="breadcrumbs" class="breadcrumbs"> <div class="container"> <div class="d-flex justify-content-between align-items-center"> {% block breadcrumbs %} {% endblock %} </div> </div> </section> <!-- End Breadcrumbs --> <!-- ======= Flash Messages ======= --> <div class="container pt-sm-2"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <symbol id="success-fill" fill="currentColor" viewBox="0 0 16 16"> <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"/> </symbol> <symbol id="info-fill" fill="currentColor" viewBox="0 0 16 16"> <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"/> </symbol> <symbol id="warning-fill" fill="currentColor" viewBox="0 0 16 16"> <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"/> </symbol> <symbol id="danger-fill" fill="currentColor" viewBox="0 0 16 16"> <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"/> </symbol> </svg> {% for type, messages in app.flashes %} {% for message in messages %} <div class="alert alert-{{ type }} alert-dismissible fade show d-flex align-items-center" role="alert"> <svg class="bi flex-shrink-0 me-2" width="24" height="24" role="img" aria-label="Info:"> <use xlink:href="#{{ type }}-fill"/> </svg> <div> {{ message }} </div> <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="{{ "nav.close" | trans }}"></button> </div> {% endfor %} {% endfor %} <div id="ajax_msg" style="display: none;"></div> </div> <!-- End Flash Messages --> <!-- ======= Services Section ======= --> {% block section %} <section class="blog"> <div class="container" data-aos="fade-up"> {% block body %} {% endblock %} </div> </section> {% endblock %} <!-- End Services Section --></main><!-- ======= Footer ======= --><footer id="footer"> {# <div class="footer-top"> #} {# <div class="container"> #} {# <div class="row"> #} {# <div class="col-lg-3 col-md-6 footer-contact"> #} {# <h3>Asvin</h3> #} {# <p> #} {# Schulze-Delitsch-Strasse 16 <br> #} {# 70565 Stuttgart<br> #} {# Deutschland <br><br> #} {# <strong>Phone:</strong> +1 5589 55488 55<br> #} {# <strong>Email:</strong> info@example.com<br> #} {# </p> #} {# </div> #} {# <div class="col-lg-2 col-md-6 footer-links"> #} {# </div> #} {# <div class="col-lg-3 col-md-6 footer-links"> #} {# </div> #} {# <div class="col-lg-4 col-md-6 footer-newsletter"> #} {# </div> #} {# </div> #} {# </div> #} {# </div> #} <div class="container d-md-flex py-4"> <div class="me-md-auto text-center text-md-start"> <div class="copyright"> {{ 'general.copyright' | trans }} © {{ "now"|date("Y") }} <strong><span>{{ 'general.company' | trans }}</span></strong>. All Rights Reserved | V2.00 </div> <div class="credits"> <!-- All the links in the footer should remain intact. --> <!-- You can delete the links only if you purchased the pro version. --> <!-- Licensing information: https://bootstrapmade.com/license/ --> <!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/company-free-html-bootstrap-template/ --> Designed by <a href="https://bootstrapmade.com/" target="_blank">BootstrapMade</a> </div> </div> <div class="social-links text-center text-md-right pt-3 pt-md-0"> <a href="https://twitter.com/asvin_iot" target="_blank" class="twitter"><i class="bx bxl-twitter"></i></a> <a href="https://de-de.facebook.com/asvinio" target="_blank" class="facebook"><i class="bx bxl-facebook"></i></a> <a href="https://www.linkedin.com/company/asvin-gmbh" target="_blank" class="instagram"><i class="bx bxl-instagram"></i></a>{# <a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>#} <a href="https://www.youtube.com/channel/UCpP9D_f6y2vtrJYTnUfD0dA" target="_blank" class="google-plus"><i class="bx bxl-youtube"></i></a> </div> </div></footer><!-- End Footer --><a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a></body></html>