Files
gujurly.com/resources/views/web/layouts/app.blade.php

59 lines
1.3 KiB
PHP

<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
<!-- Start Meta -->
@include('web.layouts.meta-tags')
<!-- Title of Site -->
<title>@isset($title) {{ "{$title} " . __('|') . " " }} @endisset {{ $settings->name }}</title>
<!-- Favicons -->
@include('web.layouts.favicons')
{{-- Styles --}}
@include('web.layouts.styles')
{{-- Header css --}}
@stack('header-css')
</head>
<body>
{{-- Loader --}}
@include('web.layouts.loader')
{{-- Custom cursor --}}
@include('web.layouts.cursor')
{{-- Settings button --}}
@include('web.layouts.settings-button')
{{-- Search input box --}}
@include('web.layouts.navigation.search-box')
{{-- PC habmurger --}}
@include('web.layouts.navigation.pc-hamburger')
{{-- Mobile menu --}}
@include('web.layouts.navigation.mobile-menu')
{{-- Navigation Links --}}
@include('web.layouts.navigation.header')
{{-- Page content --}}
@yield('content')
{{-- Footer --}}
@include('web.layouts.footer')
{{-- Copy right --}}
@include('web.layouts.copy-right')
{{-- Scroll to top button --}}
@include('web.layouts.scroll-top-button')
{{-- Footer js --}}
@include('web.layouts.footer-js')
@stack('footer-js')
</body>
</html>