PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
resources
/
views
/
templates
/
basic
/
layouts
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> <meta name="author" content="{{ isset($general->sitename) ? $general->sitename : 'Sothebry' }}" /> <title>{{$general->sitename(__($pageTitle)) ?? 'Sothebry | Sports On The Blockchain Relatable to You' }}</title> @include('partials.seo') <link rel="icon" type="image/x-icon" href="{{getImage(imagePath()['logoIcon']['path'] .'/favicon.png')}}" /> <link href="{{asset($activeTemplateTrue.'customV1/css/owl.css')}}" rel="stylesheet" /> <link rel="stylesheet" href="{{asset($activeTemplateTrue.'frontend/css/main.css')}}"> <link href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/6.8.4/swiper-bundle.min.css" rel="stylesheet" /> <link href="{{asset($activeTemplateTrue.'customV1/css/swiper-custom-style.css')}}" rel="stylesheet" /> <link href="{{asset($activeTemplateTrue.'customV1/css/styles.css')}}" rel="stylesheet" /> <link href="{{asset($activeTemplateTrue.'customV1/css/custom-style.css')}}" rel="stylesheet" /> <link href="{{asset($activeTemplateTrue.'customV1/css/responsive.css')}}" rel="stylesheet" /> <link rel="stylesheet" href="{{asset('assets/global/css/line-awesome.min.css')}}"> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script> </head> <body> <a href="#" class="scrollToTop"><i class="las la-angle-up"></i></a> @include($activeTemplate . 'partials.header') @if(!request()->routeIs('home')) @include($activeTemplate . 'partials.breadcrumb') @endif @yield('content') @include($activeTemplate . 'partials.footer') <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/6.8.4/swiper-bundle.min.js"></script> <script src="{{asset($activeTemplateTrue.'customV1/js/owl.js')}}"></script> <script src="{{asset($activeTemplateTrue.'customV1/js/script.js')}}"></script> <script src="{{asset($activeTemplateTrue.'customV1/js/scripts.js')}}"></script> <script> (function() { $('.hamburger__menu').on('click', function() { $('.menu').toggleClass('animate'); }) })(); </script> <script> $(function () { var galleryThumbs = new Swiper(".gallery-thumbs", { centeredSlides: true, centeredSlidesBounds: true, direction: "horizontal", spaceBetween: 10, slidesPerView: 4, freeMode: false, watchSlidesVisibility: true, watchSlidesProgress: true, watchOverflow: true, breakpoints: { 480: { direction: "vertical", slidesPerView: 4, } } }); var galleryTop = new Swiper(".gallery-top", { direction: "horizontal", spaceBetween: 10, navigation: { nextEl: ".swiper-button-next", prevEl: ".swiper-button-prev" }, thumbs: { swiper: galleryThumbs }, }); galleryTop.on('slideChangeTransitionStart', function () { galleryThumbs.slideTo(galleryTop.activeIndex); }); galleryThumbs.on('transitionStart', function () { galleryTop.slideTo(galleryThumbs.activeIndex); }); }); </script> @stack('script') @include('partials.notify') <script> //Click event to scroll to top // Scroll To Top var scrollTop = $(".scrollToTop"); $(window).on('scroll', function () { if ($(this).scrollTop() < 500) { scrollTop.removeClass("active"); } else { scrollTop.addClass("active"); } }); //header var header = $(".header-bottom"); $(window).on('scroll', function () { if ($(this).scrollTop() < 1) { header.removeClass("active"); } else { header.addClass("active"); } }); //Click event to scroll to top $('.scrollToTop').on('click', function () { $('html, body').animate({ scrollTop: 0 }, 500); return false; }); $('.sidebar__init').on('click', function() { $('.dashboard-menu, .overlay').addClass('active') }); $('.side-sidebar-close-btn').on('click', function() { $('.dashboard-menu, .overlay').removeClass('active') }); </script> <script> $('.dropdown-menu').on('click', function(e) { e.stopPropagation(); }); </script> </body> </html>
[-] auth-old.blade.php
[edit]
[+]
..
[-] frontend.blade.php
[edit]
[-] auth.blade.php
[edit]