46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>{{ config('app.name', 'Motula-Translate') }}</title>
|
|
|
|
<!-- Fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" rel="stylesheet">
|
|
<!-- End fonts -->
|
|
|
|
<!-- Styles -->
|
|
@vite([
|
|
'resources/css/core.css',
|
|
'resources/css/app_style.css',
|
|
'resources/vendors/flatpickr/flatpickr.min.css',
|
|
'resources/vendors/fontawesome/css/all.min.css',
|
|
])
|
|
|
|
@include('layouts.partials.styles')
|
|
@stack('head-scripts')
|
|
</head>
|
|
<body class="font-sans antialiased sidebar-dark">
|
|
<div class="main-wrapper">
|
|
@include('layouts.partials.sidebar')
|
|
|
|
<div class="page-wrapper">
|
|
@include('layouts.partials.navbar')
|
|
<div class="page-content">
|
|
@include('layouts.partials.flesh-message')
|
|
{{ $slot }}
|
|
</div>
|
|
|
|
@include('layouts.partials.footer')
|
|
</div>
|
|
</div>
|
|
|
|
@include('layouts.partials.scripts')
|
|
@stack('body-scripts')
|
|
</body>
|
|
</html>
|