Initial commit
This commit is contained in:
48
resources/views/components/layouts/home/master.blade.php
Normal file
48
resources/views/components/layouts/home/master.blade.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
|
||||
<title>{{ $title ?? 'Page Title' }}</title>
|
||||
<script src="{{ asset('ckeditor/ckeditor.js') }}"></script>
|
||||
|
||||
<link rel="stylesheet" href="{{asset('swiper/swiper-bundle.css')}}">
|
||||
<script src="{{asset('swiper/swiper-bundle.js')}}"></script>
|
||||
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
||||
@livewireStyles
|
||||
|
||||
<style>
|
||||
.cke_dialog_ui_input_file {
|
||||
height: max-content !important;
|
||||
}
|
||||
|
||||
.cke_notification {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.swiper-button-next::after,
|
||||
.swiper-button-prev::after,
|
||||
.swiper-rtl .swiper-button-prev:after,
|
||||
.swiper-rtl .swiper-button-next:after {
|
||||
content: "";
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body dir="rtl">
|
||||
<div class="w-full flex justify-center">
|
||||
|
||||
<div class="w-[75%] ">
|
||||
{{ $slot }}
|
||||
</div>
|
||||
|
||||
@stack('script_js')
|
||||
@livewireScriptConfig
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user