관리-도구
편집 파일: 76696de7803f585d8794220a13379a6305d56a9b.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name='description' content="<?php echo e($general->seo_description); ?>"> <meta name="csrf-token" content="<?php echo e(csrf_token()); ?>"> <link rel="shortcut icon" type="image/png" href="<?php echo e(getFile('icon', $general->favicon)); ?>"> <title> <?php if($general->sitename): ?> <?php echo e(__($general->sitename)); ?> <?php endif; ?> </title> <link rel="stylesheet" href="<?php echo e(asset('asset/frontend/css/cookie.css')); ?>"> <link href="<?php echo e(asset('asset/frontend/img/apple-touch-icon.png')); ?>" rel="apple-touch-icon"> <link href="<?php echo e(asset('asset/frontend/vendor/bootstrap/css/bootstrap.min.css')); ?>" rel="stylesheet"> <link href="<?php echo e(asset('asset/frontend/vendor/bootstrap-icons/bootstrap-icons.css')); ?>" rel="stylesheet"> <link href="<?php echo e(asset('asset/frontend/vendor/boxicons/css/boxicons.min.css')); ?>" rel="stylesheet"> <link href="<?php echo e(asset('asset/frontend/vendor/glightbox/css/glightbox.min.css')); ?>" rel="stylesheet"> <link href="<?php echo e(asset('asset/frontend/vendor/remixicon/remixicon.css')); ?>" rel="stylesheet"> <link href="<?php echo e(asset('asset/frontend/vendor/swiper/swiper-bundle.min.css')); ?>" rel="stylesheet"> <link rel="stylesheet" href="<?php echo e(asset('asset/frontend/css/selectric.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('asset/frontend/css/animate.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('asset/frontend/css/slick.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('asset/frontend/css/font-awsome.min.css')); ?>"> <link href="<?php echo e(asset('asset/frontend/css/style.css')); ?>" rel="stylesheet"> <link rel="stylesheet" href="<?php echo e(asset('asset/frontend/css/iziToast.min.css')); ?>"> <?php echo $__env->yieldPushContent('style'); ?> <link rel="stylesheet" href="<?php echo e(asset('asset/frontend/css/color.php?primary_color=' . str_replace('#', '', $general->primary_color))); ?>"> </head> <body> <?php if($general->preloader_status): ?> <div id="preloader"></div> <?php endif; ?> <?php if($general->allow_modal): ?> <?php echo $__env->make('cookieConsent::index', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php endif; ?> <?php if($general->analytics_status): ?> <script async src="https://www.googletagmanager.com/gtag/js?id=<?php echo e($general->analytics_key); ?>"></script> <script> 'use strict' window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag("js", new Date()); gtag("config", "<?php echo e($general->analytics_key); ?>"); </script> <?php endif; ?> <?php echo $__env->make('frontend.layout.header', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <main id="main" class="main-img"> <?php echo $__env->yieldContent('content'); ?> </main> <?php echo $__env->make('frontend.layout.footer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <button type="button" class="cmn-btn btn-sm btn-floating" id="btn-back-to-top"> <i class="fas fa-arrow-up text-light"></i> </button> <script src="<?php echo e(asset('asset/frontend/js/jquery.min.js')); ?>"></script> <script src="<?php echo e(asset('asset/frontend/vendor/purecounter/purecounter.js')); ?>"></script> <script src="<?php echo e(asset('asset/frontend/vendor/bootstrap/js/bootstrap.bundle.min.js')); ?>"></script> <script src="<?php echo e(asset('asset/frontend/vendor/glightbox/js/glightbox.min.js')); ?>"></script> <script src="<?php echo e(asset('asset/frontend/js/slick.min.js')); ?>"></script> <script src="<?php echo e(asset('asset/frontend/vendor/php-email-form/validate.js')); ?>"></script> <script src="<?php echo e(asset('asset/frontend/js/selectric.min.js')); ?>"></script> <script src="<?php echo e(asset('asset/frontend/js/main.js')); ?>"></script> <script src="<?php echo e(asset('asset/frontend/js/iziToast.min.js')); ?>"></script> <script src="<?php echo e(asset('asset/frontend/js/jquery.uploadPreview.min.js')); ?>"></script> <?php echo $__env->yieldPushContent('script'); ?> <?php if(Session::has('error')): ?> <script> $(function() { "use strict"; iziToast.error({ message: "<?php echo e(session('error')); ?>", position: 'topRight' }); }); </script> <?php endif; ?> <?php if(Session::has('success')): ?> <script> $(function() { "use strict"; iziToast.success({ message: "<?php echo e(session('success')); ?>", position: 'topRight' }); }); </script> <?php endif; ?> <?php if(session()->has('notify')): ?> <?php $__currentLoopData = session('notify'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $msg): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <script> $(function() { "use strict"; iziToast.<?php echo e($msg[0]); ?>({ message: "<?php echo e(trans($msg[1])); ?>", position: "topRight" }); }); </script> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> <?php if($errors->any()): ?> <script> $(function() { "use strict"; <?php $__currentLoopData = $errors->all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $error): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> iziToast.error({ message: "<?php echo e(__($error)); ?>", position: "topRight" }); <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> }); </script> <?php endif; ?> <script> $(document).on('submit', '#subscribe', function(e) { 'use strict' e.preventDefault(); const email = $('.subscribe-email').val(); var url = "<?php echo e(route('subscribe')); ?>"; $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') } }); $.ajax({ type: 'POST', url: url, data: { email: email, }, success: (data) => { iziToast.success({ message: data.message, position: 'topRight', }); $('.subscribe-email').val(''); }, error: (error) => { if (typeof(error.responseJSON.errors.email) !== "undefined") { iziToast.error({ message: error.responseJSON.errors.email, position: 'topRight', }); } } }) $(".changeLang").on("change", function() { let url = $(this).find('option:selected').data('action'); window.location.href = url; }); let mybutton = document.getElementById("btn-back-to-top"); window.onscroll = function() { scrollFunction(); }; function scrollFunction() { if ( document.body.scrollTop > 20 || document.documentElement.scrollTop > 20 ) { mybutton.style.display = "block"; } else { mybutton.style.display = "none"; } } mybutton.addEventListener("click", backToTop); function backToTop() { document.body.scrollTop = 0; document.documentElement.scrollTop = 0; } }); </script> </body> </html> <?php /**PATH /home/inprosysltd/public_html/cityscape.inprosysltd.com/core/resources/views/frontend/layout/master.blade.php ENDPATH**/ ?>