themes-getlumino/content/master.blade.php

47 lines
1.4 KiB
PHP
Raw Normal View History

2023-05-07 18:59:35 +00:00
<!DOCTYPE html>
2022-01-01 14:51:36 +00:00
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
2023-05-07 18:59:35 +00:00
2022-01-01 14:51:36 +00:00
<head>
2023-05-07 18:59:35 +00:00
@include('template.'.config('settings.template').'.content.includes.meta')
@include('template.'.config('settings.template').'.content.includes.css')
@include('template.'.config('settings.template').'.content.includes.integrations')
@yield('head')
<!-- Metas -->
<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="keywords" content="HTML5 Template Iteck Multi-Purpose themeforest" />
<meta name="description" content="Iteck - Multi-Purpose HTML5 Template" />
<meta name="author" content="" />
<!-- Title -->
<title>Iteck</title>
<!-- Favicon -->
<link rel="shortcut icon" href="assets/img/fav.png" title="Favicon" sizes="16x16" />
2022-01-01 14:51:36 +00:00
</head>
2023-05-07 18:59:35 +00:00
2022-01-01 14:51:36 +00:00
<body>
2023-05-07 18:59:35 +00:00
@include('template.'.config('settings.template').'.content.includes.nav')
@yield('content')
@include('template.'.config('settings.template').'.content.includes.footer')
@include('template.'.config('settings.template').'.content.includes.scripts')
@yield('scripts')
@yield('end_scripts')
<a href="#" class="to_top bg-gray rounded-circle icon-40 d-inline-flex align-items-center justify-content-center">
<i class="bi bi-chevron-up fs-6 text-dark"></i>
</a>
<!-- ====== end to top button ====== -->
2022-01-01 14:51:36 +00:00
</body>
2023-05-07 18:59:35 +00:00
2022-01-01 14:51:36 +00:00
</html>