17 lines
683 B
PHP
17 lines
683 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ App::getLocale() }}" dir="@lang('boilerplate::layout.direction')">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="robots" content="noindex, nofollow">
|
|
<title>{{ $title ?? '' }} | {{ config('app.name') }}</title>
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,700;1,400&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/assets/css/main.min.css?{{ time() }}">
|
|
</head>
|
|
<body>
|
|
@yield('content')
|
|
</body>
|
|
</html>
|