10 lines
252 B
PHP
10 lines
252 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
@include('partials.head', ['title' => $title ?? null])
|
|
</head>
|
|
<body class="bg-surface-page text-text-base font-sans antialiased">
|
|
{{ $slot }}
|
|
</body>
|
|
</html>
|