first
This commit is contained in:
58
resources/views/web/layouts/app.blade.php
Normal file
58
resources/views/web/layouts/app.blade.php
Normal file
@@ -0,0 +1,58 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user