68 lines
1.6 KiB
PHP
68 lines
1.6 KiB
PHP
<!doctype html>
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="robots" content="noindex, nofollow">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>OpenSemis</title>
|
|
<meta name="description" content="Boutique propulsée par HumaN.E.T">
|
|
<meta name="keywords" content="">
|
|
|
|
<link rel="icon" type="image/vnd.microsoft.icon" href="img/favicon.ico">
|
|
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
|
|
<link rel="stylesheet" href="css/site.min.css" type="text/css" media="all">
|
|
|
|
@stack('css')
|
|
|
|
</head>
|
|
|
|
<body id="index">
|
|
|
|
<div class="wrapper">
|
|
<main>
|
|
|
|
@include("Shop.layout.partials.header")
|
|
|
|
<div class="content-wrapper">
|
|
<section class="content">
|
|
<div class="container-fluid">
|
|
@yield('content')
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
@include("Shop._partials.footer")
|
|
|
|
</main>
|
|
</div>
|
|
|
|
|
|
<script type="text/javascript" src="js/site.min.js" ></script>
|
|
|
|
@stack('scripts')
|
|
|
|
<script>
|
|
$.ajaxSetup({headers: {'X-CSRF-TOKEN': '{{ csrf_token() }}'}});
|
|
</script>
|
|
@if(Session::has('growl'))
|
|
<script>
|
|
$(function() {
|
|
@if(is_array(Session::get('growl')))
|
|
growl("{!! Session::get('growl')[0] !!}", "{{ Session::get('growl')[1] }}");
|
|
@else
|
|
growl("{{Session::get('growl')}}");
|
|
@endif
|
|
});
|
|
</script>
|
|
@endif
|
|
|
|
@stack('js')
|
|
|
|
</body>
|
|
|
|
</html> |