maps-theme/content/master.blade.php

18 lines
482 B
PHP
Raw Normal View History

2023-05-15 19:30:18 +00:00
<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, maximum-scale=1" />
<meta name="description" content="{{config('settings.description')}}" />
2023-05-15 19:57:14 +00:00
<meta name="author" content=""/>
@yield('head')
2023-05-15 19:30:18 +00:00
</head>
<body>
@yield('content')
</body>
</html>