44 lines
1.2 KiB
PHP
44 lines
1.2 KiB
PHP
<!doctype html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" data-bs-theme="light" data-footer="dark">
|
|
|
|
<head>
|
|
<!-- Google tag (gtag.js) -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BYVJEGY423"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-BYVJEGY423');
|
|
</script>
|
|
|
|
<meta charset="utf-8">
|
|
<title>Kevkem Chiropractic Health & Injury Rehab</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta content="Kevkem Chiropractic Health & Injury Rehab" name="description">
|
|
<meta content="Themesbrand" name="author">
|
|
<!-- App favicon -->
|
|
<link rel="shortcut icon" href="{{ URL::asset('build/images/favicon.ico') }}">
|
|
|
|
<!-- head css -->
|
|
@include('layouts.head-css')
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- top tagbar -->
|
|
@include('layouts.top-tagbar')
|
|
<!-- topbar -->
|
|
@include('layouts.topbar')
|
|
|
|
@yield('content')
|
|
|
|
<!-- footer -->
|
|
@include('layouts.footer')
|
|
<!-- scripts -->
|
|
@include('layouts.vendor-scripts')
|
|
|
|
</body>
|
|
|
|
</html>
|