Sync
This commit is contained in:
50
resources/views/front/layouts/app.blade.php
Normal file
50
resources/views/front/layouts/app.blade.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
|
||||
<head>
|
||||
@include('googletagmanager::head')
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
{!! SEOMeta::generate() !!}
|
||||
{!! OpenGraph::generate() !!}
|
||||
{!! Twitter::generate() !!}
|
||||
{!! JsonLdMulti::generate() !!}
|
||||
<meta property="fb:app_id" content="{{ config('seotools.fb_app_id') }}" />
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
|
||||
|
||||
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('apple-touch-icon.png') }}">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('favicon-32x32.png') }}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('favicon-16x16.png') }}">
|
||||
<link rel="manifest" href="{{ asset('site.webmanifest') }}">
|
||||
|
||||
@vite('resources/sass/app-front.scss')
|
||||
|
||||
<!-- Custom styles for this Page-->
|
||||
@yield('custom_styles')
|
||||
|
||||
@include('front.layouts.header')
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
@include('googletagmanager::body')
|
||||
|
||||
@include('front.layouts.navigation')
|
||||
|
||||
@yield('content')
|
||||
|
||||
@include('front.layouts.footer')
|
||||
|
||||
<!-- Core plugin JavaScript-->
|
||||
@vite('resources/js/app-front.js')
|
||||
|
||||
<!-- Page level custom scripts -->
|
||||
@yield('custom_scripts')
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
13
resources/views/front/layouts/footer.blade.php
Normal file
13
resources/views/front/layouts/footer.blade.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<div class="container-fluid border-top">
|
||||
<footer class="container-lg">
|
||||
|
||||
<div class="py-3 text-center">
|
||||
<div class="mb-2">© {{ date('Y') }} {{ config('app.name') }}. All rights reserved.</div>
|
||||
<ul class="list-unstyled d-flex justify-content-center">
|
||||
<li class="ms-2"><a href="{{ route('front.privacy') }}">Privacy</a></li>
|
||||
<li class="ms-2"><a href="{{ route('front.terms') }}">Terms</a></li>
|
||||
<li class="ms-2"><a href="{{ route('front.disclaimer') }}">Disclaimer</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
1
resources/views/front/layouts/header.blade.php
Normal file
1
resources/views/front/layouts/header.blade.php
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
12
resources/views/front/layouts/navigation.blade.php
Normal file
12
resources/views/front/layouts/navigation.blade.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<div class="container-fluid shadow-sm">
|
||||
<header class="d-flex flex-wrap align-items-center justify-content-center py-3">
|
||||
<div class="col-auto">
|
||||
|
||||
<a href="{{ route('front.home') }}" class="btn btn-link d-inline-flex text-decoration-none text-center">
|
||||
<p class="display-6 mb-0 font-family-black-ops-one">
|
||||
{{ config('app.name') }}
|
||||
</p>
|
||||
</a>
|
||||
</div>
|
||||
</header>
|
||||
</div>
|
||||
Reference in New Issue
Block a user