mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Oops</title>
|
|
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" href="{{ asset('assets/css/bootstrap.min.css') }}">
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
|
|
<!-- Ionicons -->
|
|
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
|
|
|
|
<!-- Select2 -->
|
|
<link rel="stylesheet" href="{{ asset('assets/js/plugins/select2/select2.min.css') }}">
|
|
|
|
<!-- Bootstrap Color Picker -->
|
|
<link rel="stylesheet" href="{{ asset('assets/js/plugins/colorpicker/bootstrap-colorpicker.min.css') }}">
|
|
|
|
<link rel="stylesheet" href="{{ asset('assets/js/plugins/datepicker/bootstrap-datepicker.css') }}">
|
|
|
|
<!-- jvectormap -->
|
|
<link rel="stylesheet" href="{{ asset('assets/js/plugins/jvectormap/jquery-jvectormap-1.2.2.css') }}">
|
|
<!-- Theme style -->
|
|
<link rel="stylesheet" href="{{ asset('assets/css/AdminLTE.min.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('assets/css/skins/skin-blue.css') }}">
|
|
|
|
<!-- bootstrap tables CSS -->
|
|
<link rel="stylesheet" href="{{ asset('assets/css/bootstrap-table.css') }}">
|
|
|
|
<link rel="stylesheet" href="{{ elixir('assets/css/app.css') }}">
|
|
|
|
|
|
</head>
|
|
|
|
<body class="hold-transition login-page">
|
|
|
|
<!-- Content -->
|
|
@yield('content')
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|