| Server IP : 23.254.227.96 / Your IP : 216.73.216.21 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/viralblo/instantblog/resources/views/layouts/ |
Upload File : |
<!DOCTYPE html>
<html lang="en" class="{{ $theme }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="{{ !empty($tag->desc) ? $tag->desc : $setting->site_desc }}">
<meta name="csrf-token" content="{{ csrf_token() }}">
<link rel="icon" type="image/png" href="{{ asset('favicon.png') }}">
<title>{{ $setting->site_name . ' - ' . $setting->site_title }}</title>
<link href="{{ asset('/css/bootstrap.min.css') }}" rel="stylesheet">
<link href="{{ asset('/css/instant.css') }}" rel="stylesheet">
<link href="{{ asset('/instanticon/style.css') }}" rel="stylesheet">
@yield('css')
@if (!empty($setting->site_analytic))
{!! $setting->site_analytic !!}
@endif
</head>
@yield('bodyclass')
@include('layouts.nav')
@yield('jumbotron')
@if ($flash = session('message'))
<div class="container mt-3">
<div class="alert alert-success alert-dismissible fade show" role="alert">
{{ $flash }}
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
</div>
@elseif ($flash = session('error'))
<div class="container mt-3">
<div class="alert alert-danger alert-dismissible fade show" role="alert">
{{ $flash }}
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
</div>
@endif
@yield('content')
@yield('extra')
@if ($setting->cookie_option == '0')
@include('layouts.cookie')
@endif
@include('layouts.footer')
<script src="{{ asset('/js/main.js') }}"></script>
@stack('scripts')
<script>
document.addEventListener('DOMContentLoaded', function(){
document.getElementById('se-pre-con').style.visibility = 'hidden';
var element = document.getElementById('maincontent');
element.classList.remove('d-none');
}, false);
</script>
</body>
</html>