first commit
This commit is contained in:
34
resources/views/layouts/front/app.blade.php
Normal file
34
resources/views/layouts/front/app.blade.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
|
||||
<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">
|
||||
<meta name="description" content="">
|
||||
<title>{{ config('app.name', 'Laravel') }}</title>
|
||||
|
||||
@vite('resources/sass/front-app.scss')
|
||||
|
||||
<!-- Custom styles for this Page-->
|
||||
@yield('custom_styles')
|
||||
|
||||
@include('layouts.front.header')
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@include('layouts.front.navigation')
|
||||
|
||||
@yield('content')
|
||||
|
||||
@include('layouts.front.footer')
|
||||
|
||||
<!-- Core plugin JavaScript-->
|
||||
@vite('resources/js/front-app.js')
|
||||
|
||||
<!-- Page level custom scripts -->
|
||||
@yield('custom_scripts')
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user