maps-theme/content/master.blade.php

18 lines
817 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">
2023-05-17 19:16:49 +00:00
<meta name="csrf-token" content="{{csrf_token()}}">
2023-05-15 19:30:18 +00:00
<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=""/>
2023-05-18 17:14:55 +00:00
<link href="{{asset('template/libs/bootstrap-5.2.0/bootstrap.min.css')}}" rel="stylesheet"/>
<script src="{{asset('template/libs/jquery-3.6.0.min.js')}}"></script>
<script src="{{asset('template/libs/bootstrap-5.2.0/bootstrap.bundle.min.js')}}"></script>
2023-05-17 19:16:49 +00:00
@yield('head')
2023-05-15 19:30:18 +00:00
</head>
<body>
@yield('content')
</body>
</html>