13 lines
312 B
PHP
13 lines
312 B
PHP
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
@php($page_robots = $page_robots ?? 'noindex,nofollow')
|
|
@include('partials.seo.head', ['seo' => $seo ?? null])
|
|
</head>
|
|
<body>
|
|
@yield('content')
|
|
</body>
|
|
</html>
|