<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="csrf-token" content="{{ csrf_token() }}" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>QxCMS- {{ isset($title) ? $title:'Dashboard' }}</title>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- bootstrap 3.0.2 -->
<link href="{{ get_template('plugins/bootstrap-3.3.7/css/bootstrap.min.css') }}" rel="stylesheet" type="text/css" />
<!-- font Awesome -->
<link href="{{ get_template('font-awesome-4.7.0/css/font-awesome.min.css') }}" rel="stylesheet" type="text/css" />
<!-- Datatables -->
<link href="{{ get_template('plugins/DataTables-1.10.12/media/css/dataTables.bootstrap.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ get_template('dist/css/AdminLTE.min.css') }}" rel="stylesheet" type="text/css" />
</head>
<body class="skin-blue layout-top-nav">
<!-- Main content -->
<div class="wrapper">
<div class="content-wrapper">
<div class="container-fluid">
@yield('page-body')
</div>
</div>
</div>
<script src="{{ get_template('plugins/jQuery/jQuery-2.1.4.min.js') }}"></script>
<script src="{{ get_template('plugins/bootstrap-3.3.7/js/bootstrap.min.js') }}" type="text/javascript"></script>
<script src="{{ get_template('plugins/DataTables-1.10.12/media/js/jquery.dataTables.js') }}" type="text/javascript"></script>
<script src="{{ get_template('plugins/DataTables-1.10.12/media/js/dataTables.bootstrap.js') }}" type="text/javascript"></script>
<script type="text/javascript" src="{{ get_template('plugins/DataTables-1.10.12/extensions/Pagination/input_old.js') }}"></script>
<script src="{{ get_template('dist/js/app.min.js') }}" type="text/javascript"></script>
<script type="text/javascript">
$.ajaxSetup({
headers: {
'X-CSRF-Token' : $('meta[name=csrf-token]').attr('content'),
}
});
</script>
@yield('page-js')
</body>
</html>