??
You're inside public_html, but wp-admin or wp-content was not found.
Savvy
W
olf -
MANAGER
Edit File: layout.blade.php
<!DOCTYPE html> <html lang="{{ @Helper::currentLanguage()->code }}" dir="{{ @Helper::currentLanguage()->direction }}"> <head> @include('frontEnd.includes.head') @include('frontEnd.includes.colors') </head> <body> <div> <!-- start header --> @include('frontEnd.includes.header') <!-- end header --> <!-- Content Section --> <div class="contents"> @yield('content') </div> <!-- end of Content Section --> <!-- start footer --> @include('frontEnd.includes.footer') <!-- end footer --> </div> @include('frontEnd.includes.foot') @yield('footerInclude') @if(Helper::GeneralSiteSettings("style_preload")) <div id="preloader"></div> <script type="text/javascript"> jQuery(document).ready(function ($) { $('#preloader').fadeOut('slow', function () { $(this).remove(); }); }); </script> @endif @if(Helper::GeneralSiteSettings("style_header")) <script type="text/javascript"> window.onscroll = function () { myFunction() }; var header = document.getElementsByTagName("header")[0]; var sticky = header.offsetTop; function myFunction() { if (window.pageYOffset >= sticky) { header.classList.add("sticky"); } else { header.classList.remove("sticky"); } } </script> @endif <script> document.body.style.padding = "0 0 " + document.getElementById('footer').offsetHeight + "px"; document.getElementById('footer').style.position = 'absolute'; document.getElementById('footer').style.bottom = '0px'; document.getElementById('footer').style.width = '100%'; </script> </body> </html>