<!DOCTYPE html><html class="no-js" lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title></title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <!-- Favicon --> <link rel="shortcut icon" type="image/x-icon" href="/assets/{{ constant('config_theme') }}/images/favicon.webp"> <!-- Vendor CSS (Bootstrap & Icon Font) --> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/vendor/bootstrap.min.css"> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/vendor/font-awesome-pro.min.css"> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/vendor/themify-icons.css"> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/vendor/customFonts.css"> <!-- Plugins CSS (All Plugins Files) --> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/plugins/select2.min.css"> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/plugins/perfect-scrollbar.css"> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/plugins/swiper.min.css"> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/plugins/nice-select.css"> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/plugins/ion.rangeSlider.min.css"> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/plugins/photoswipe.css"> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/plugins/photoswipe-default-skin.css"> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/plugins/magnific-popup.css"> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/plugins/slick.css"> <!-- Main Style CSS --> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/style.min.css"> <!-- Custom Style CSS --> <link rel="stylesheet" href="/assets/theme_{{ constant('config_theme') }}/css/custom.css"> {% block headjavascript %} {% endblock %} </head> <body> {{ render(controller( 'App\\Controller\\MainController::getLeartsHeader' )) }} <!-- OffCanvas Wishlist Start --> <div id="offcanvas-wishlist" class="offcanvas offcanvas-wishlist"> {{ render(controller( 'App\\Controller\\MainController::getLeartsWhishlist' )) }} </div> <!-- OffCanvas Wishlist End --> <!-- OffCanvas Cart Start --> <div id="offcanvas-cart" class="offcanvas offcanvas-cart"> {{ render(controller( 'App\\Controller\\MainController::getLeartsOffcanvasCart' )) }} </div> <!-- OffCanvas Cart End --> <!-- OffCanvas mobile menu Start --> <div id="offcanvas-mobile-menu" class="offcanvas offcanvas-mobile-menu"> {{ render(controller( 'App\\Controller\\MainController::getLeartsOffcanvasMobileMenu' )) }} </div> <!-- OffCanvas mobile menu End --> <div class="offcanvas-overlay"></div> {% block maincontent %} <!-- Slider main container Start --> <div class="home1-slider swiper-container"> <div class="swiper-wrapper"> <div class="home1-slide-item swiper-slide" data-swiper-autoplay="5000" data-bg-image="{{ asset('assets/theme_learts/images/test/image01.jpg') }}"></div> </div> </div> <!-- Slider main container End --> <!-- Product Section Start --> <div class="section section-fluid section-padding pt-5"> <div class="container"> <!-- Section Title Start --> <div class="section-title text-center"> <h3 class="sub-title">Shop now</h3> <h2 class="title title-icon-both">Shop our best-sellers</h2> </div> <!-- Section Title End --> <!-- Products Start --> {% if (chilidocs is defined) %} <div class="products row row-cols-xl-5 row-cols-lg-4 row-cols-md-3 row-cols-sm-2 row-cols-1"> {% for c in chilidocs %} <div class="col"> <div class="product"> <div class="product-thumb"> <a href="/Produkt/{{ c.id }}" class="image"> <img src="{{ asset('previewimages/') ~ c.previewimage }}" alt="{{ c.name }}"> </a> <a href="" class="add-to-wishlist hintT-left" data-hint="Legg til/fjern fra favoritter" data-id="{{ c.id }}"> <i class="far fa-heart{% if (c.id in favourites) %} fas{% endif %}"></i> </a> </div> <div class="product-info"> <h6 class="title">{{ c.name }}</h6> </div> </div> </div> {% endfor %} </div> {% endif %} <!-- Products End --> </div> </div> <!-- Product Section End --> {% endblock %} {% block footer %} <div class="footer1-section section section-padding"> <div class="container"> <div class="row text-center row-cols-1"> <div class="footer1-logo col text-center"> <img class="w-50" src="/assets/theme_{{ constant('config_theme') }}/images/logo/vp1.png" alt="Voyage Print Logo"> </div> <div class="footer1-menu col"> <ul class="widget-menu justify-content-center"> <li><a href="{{ path('aboutuspage') }}">Om oss</a></li> <li><a href="#">Informasjon</a></li> <li><a href="{{ path('termspage') }}">Vilkår</a></li> </ul> </div> <div class="footer1-subscribe d-flex flex-column col"> <!-- mailchimp-alerts Start --> <div class="mailchimp-alerts text-centre"> <div class="mailchimp-submitting"></div><!-- mailchimp-submitting end --> <div class="mailchimp-success text-success"></div><!-- mailchimp-success end --> <div class="mailchimp-error text-danger"></div><!-- mailchimp-error end --> </div><!-- mailchimp-alerts end --> </div> <div class="footer1-social col"> <ul class="widget-social justify-content-center"> <li class="hintT-top" data-hint="Twitter"> <a href="https://www.twitter.com/"><i class="fab fa-twitter"></i></a></li> <li class="hintT-top" data-hint="Facebook"> <a href="https://www.facebook.com/"><i class="fab fa-facebook-f"></i></a></li> <li class="hintT-top" data-hint="Instagram"> <a href="https://www.instagram.com/"><i class="fab fa-instagram"></i></a></li> <li class="hintT-top" data-hint="Youtube"> <a href="https://www.youtube.com/"><i class="fab fa-youtube"></i></a></li> </ul> </div> <div class="footer1-copyright col"> <p class="copyright">© {{ 'now' | date('Y') }} Voyage Print. All Rights Reserved | <strong>(+00) 123 567990</strong> | <a href="mailto:contact@learts.com">contact@learts.com</a></p> </div> </div> </div> </div> {% endblock %} {% if ((app.environment == 'dev') and (constant('config_server_debug_on'))) %} {{ render(controller( 'App\\Controller\\MainController::getLeartsDebugInfo' )) }} {% endif %} <!-- Vendors JS --> <script src="/assets/theme_{{ constant('config_theme') }}/js/vendor/modernizr-3.6.0.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/vendor/jquery-3.4.1.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/vendor/jquery-migrate-3.1.0.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/vendor/bootstrap.bundle.min.js"></script> <!-- Plugins JS --> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/select2.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/jquery.nice-select.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/perfect-scrollbar.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/swiper.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/slick.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/mo.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/jquery.ajaxchimp.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/jquery.countdown.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/imagesloaded.pkgd.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/isotope.pkgd.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/jquery.matchHeight-min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/ion.rangeSlider.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/photoswipe.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/photoswipe-ui-default.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/jquery.zoom.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/ResizeSensor.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/jquery.sticky-sidebar.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/product360.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/jquery.magnific-popup.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/jquery.scrollUp.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/scrollax.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/instafeed.min.js"></script> <!-- Use the minified version files listed below for better performance and remove the files listed above --> <!-- <script src="/assets/theme_{{ constant('config_theme') }}/js/vendor/vendor.min.js"></script> <script src="/assets/theme_{{ constant('config_theme') }}/js/plugins/plugins.min.js"></script> --> <!-- Main Activation JS --> <script src="/assets/theme_{{ constant('config_theme') }}/js/main.js"></script> <!-- Loadingoverlay - https://gasparesganga.com/labs/jquery-loading-overlay/ --> <script src="/assets/theme_{{ constant('config_theme') }}/js/loadingoverlay.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11.4.17/dist/sweetalert2.all.min.js"></script> {% block extrajslibs %} {% endblock %} {% block bodyjavascript %} {% endblock %} <script src="/assets/theme_{{ constant('config_theme') }}/js/local.js"></script> </body></html>