initial commit
This commit is contained in:
commit
28301e4312
219 changed files with 23035 additions and 0 deletions
48
resources/views/app.blade.php
Executable file
48
resources/views/app.blade.php
Executable file
|
@ -0,0 +1,48 @@
|
|||
<!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>Library Management System</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="{{ asset('css/bootstrap.min.css') }}">
|
||||
<link href="{{ asset('/css/app.css') }}" rel="stylesheet">
|
||||
|
||||
<!-- Fonts -->
|
||||
<link href='http://fonts.googleapis.com/css?family=Marvel' rel='stylesheet' type='text/css'>
|
||||
|
||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@include('partials.nav')
|
||||
|
||||
<div class="container">
|
||||
|
||||
@include('partials.flash')
|
||||
|
||||
@yield('content')
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<!-- Scripts -->
|
||||
|
||||
<script type="text/javascript" src="{{ asset('js/jquery-2.1.1.min.js') }}"></script>
|
||||
<script type="text/javascript" src="{{ asset('js/bootstrap.min.js') }}"></script>
|
||||
<script type="text/javascript">
|
||||
$('div.alert').not('alert-important').delay(3000).slideUp(300);
|
||||
</script>
|
||||
|
||||
|
||||
@yield('footer')
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue