| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | <!DOCTYPE html> | 
					
						
							|  |  |  | <html> | 
					
						
							|  |  |  | <head> | 
					
						
							| 
									
										
										
										
											2015-07-17 04:24:26 +08:00
										 |  |  |     <title>BookStack</title> | 
					
						
							| 
									
										
										
										
											2015-08-29 23:00:19 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <!-- Meta--> | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     <meta name="viewport" content="width=device-width"> | 
					
						
							| 
									
										
										
										
											2015-08-13 06:42:42 +08:00
										 |  |  |     <meta name="token" content="{{ csrf_token() }}"> | 
					
						
							| 
									
										
										
										
											2015-08-29 23:00:19 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <!-- Styles and Fonts --> | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     <link rel="stylesheet" href="/css/app.css"> | 
					
						
							| 
									
										
										
										
											2015-07-28 03:17:08 +08:00
										 |  |  |     <link href='//fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700,700italic,300italic,100,300' rel='stylesheet' type='text/css'> | 
					
						
							| 
									
										
										
										
											2015-07-31 05:27:35 +08:00
										 |  |  |     <link rel="stylesheet" href="/bower/material-design-iconic-font/dist/css/material-design-iconic-font.min.css"> | 
					
						
							| 
									
										
										
										
											2015-08-29 23:00:19 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <!-- Scripts --> | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> | 
					
						
							| 
									
										
										
										
											2015-07-16 05:55:49 +08:00
										 |  |  |     <script src="/bower/bootstrap/dist/js/bootstrap.js"></script> | 
					
						
							| 
									
										
										
										
											2015-07-22 03:13:29 +08:00
										 |  |  |     <script src="/bower/jquery-sortable/source/js/jquery-sortable.js"></script> | 
					
						
							| 
									
										
										
										
											2015-08-13 06:42:42 +08:00
										 |  |  |     <script src="/bower/dropzone/dist/min/dropzone.min.js"></script> | 
					
						
							| 
									
										
										
										
											2015-08-17 03:11:21 +08:00
										 |  |  |     <script src="/bower/vue/dist/vue.min.js"></script> | 
					
						
							| 
									
										
										
										
											2015-07-16 05:55:49 +08:00
										 |  |  |     <script> | 
					
						
							|  |  |  |         $.fn.smoothScrollTo = function() { | 
					
						
							| 
									
										
										
										
											2015-07-17 02:15:22 +08:00
										 |  |  |             if(this.length === 0) return; | 
					
						
							| 
									
										
										
										
											2015-07-16 05:55:49 +08:00
										 |  |  |             $('body').animate({ | 
					
						
							|  |  |  |                 scrollTop: this.offset().top - 60 // Adjust to change final scroll position top margin
 | 
					
						
							|  |  |  |             }, 800); // Adjust to change animations speed (ms)
 | 
					
						
							|  |  |  |             return this; | 
					
						
							|  |  |  |         }; | 
					
						
							| 
									
										
										
										
											2015-07-17 02:53:24 +08:00
										 |  |  |         $.expr[":"].contains = $.expr.createPseudo(function(arg) { | 
					
						
							|  |  |  |             return function( elem ) { | 
					
						
							|  |  |  |                 return $(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0; | 
					
						
							|  |  |  |             }; | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-07-16 05:55:49 +08:00
										 |  |  |     </script> | 
					
						
							| 
									
										
										
										
											2015-08-29 23:00:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 04:31:15 +08:00
										 |  |  |     @yield('head') | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | </head> | 
					
						
							| 
									
										
										
										
											2015-08-31 18:43:28 +08:00
										 |  |  | <body class="@yield('body-class')"> | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-29 23:00:19 +08:00
										 |  |  |     @if(Session::has('success')) | 
					
						
							|  |  |  |         <div class="notification anim pos"> | 
					
						
							|  |  |  |             <i class="zmdi zmdi-mood"></i> <span>{{ Session::get('success') }}</span> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @if(Session::has('error')) | 
					
						
							|  |  |  |         <div class="notification anim neg"> | 
					
						
							|  |  |  |             <i class="zmdi zmdi-alert-circle"></i> <span>{{ Session::get('error') }}</span> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-31 00:53:30 +08:00
										 |  |  |     <header id="header"> | 
					
						
							|  |  |  |         <div class="container"> | 
					
						
							|  |  |  |             <div class="row"> | 
					
						
							|  |  |  |                 <div class="col-md-3"> | 
					
						
							| 
									
										
										
										
											2015-08-31 18:43:28 +08:00
										 |  |  |                     <a href="/" class="logo">{{ Setting::get('app-name', 'BookStack') }}</a> | 
					
						
							| 
									
										
										
										
											2015-08-31 00:53:30 +08:00
										 |  |  |                 </div> | 
					
						
							| 
									
										
										
										
											2015-08-31 18:43:28 +08:00
										 |  |  |                 <div class="col-md-9"> | 
					
						
							|  |  |  |                     <div class="float right"> | 
					
						
							|  |  |  |                         <div class="links text-center"> | 
					
						
							|  |  |  |                             <a href="/search"><i class="zmdi zmdi-search"></i></a> | 
					
						
							|  |  |  |                             <a href="/books"><i class="zmdi zmdi-book"></i>Books</a> | 
					
						
							|  |  |  |                             @if($currentUser->can('settings-update')) | 
					
						
							|  |  |  |                                 <a href="/settings"><i class="zmdi zmdi-settings"></i>Settings</a> | 
					
						
							|  |  |  |                             @endif | 
					
						
							|  |  |  |                         </div> | 
					
						
							| 
									
										
										
										
											2015-08-31 19:29:48 +08:00
										 |  |  |                         @if($signedIn) | 
					
						
							|  |  |  |                             <img class="avatar" src="{{$currentUser->getAvatar(30)}}" alt="{{ $currentUser->name }}"> | 
					
						
							|  |  |  |                             <div class="dropdown-container" data-dropdown> | 
					
						
							|  |  |  |                                 <span class="user-name" data-dropdown-toggle> | 
					
						
							|  |  |  |                                     {{ $currentUser->name }} <i class="zmdi zmdi-caret-down"></i> | 
					
						
							|  |  |  |                                 </span> | 
					
						
							|  |  |  |                                 <ul class="dropdown"> | 
					
						
							|  |  |  |                                     <li> | 
					
						
							|  |  |  |                                         <a href="/users/{{$currentUser->id}}" class="text-primary"><i class="zmdi zmdi-edit zmdi-hc-lg"></i>Edit Profile</a> | 
					
						
							|  |  |  |                                     </li> | 
					
						
							|  |  |  |                                     <li> | 
					
						
							|  |  |  |                                         <a href="/logout" class="text-neg"><i class="zmdi zmdi-run zmdi-hc-lg"></i>Logout</a> | 
					
						
							|  |  |  |                                     </li> | 
					
						
							|  |  |  |                                 </ul> | 
					
						
							|  |  |  |                             </div> | 
					
						
							|  |  |  |                         @endif | 
					
						
							| 
									
										
										
										
											2015-08-31 18:43:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 20:41:35 +08:00
										 |  |  |                     </div> | 
					
						
							| 
									
										
										
										
											2015-07-17 02:53:24 +08:00
										 |  |  |                 </div> | 
					
						
							| 
									
										
										
										
											2015-07-16 05:55:49 +08:00
										 |  |  |             </div> | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2015-08-31 00:53:30 +08:00
										 |  |  |     </header> | 
					
						
							| 
									
										
										
										
											2015-07-22 05:11:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <section id="content"> | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |         @yield('content') | 
					
						
							|  |  |  |     </section> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 02:15:22 +08:00
										 |  |  | @yield('bottom') | 
					
						
							| 
									
										
										
										
											2015-08-29 23:00:19 +08:00
										 |  |  |     <script> | 
					
						
							| 
									
										
										
										
											2015-08-31 18:43:28 +08:00
										 |  |  |         $(function() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $('.notification').click(function() { | 
					
						
							|  |  |  |                 $(this).fadeOut(100); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // Dropdown toggles
 | 
					
						
							|  |  |  |             $('[data-dropdown-toggle]').click(function() { | 
					
						
							|  |  |  |                 var toggleButton = $(this); | 
					
						
							|  |  |  |                 var container = toggleButton.closest('[data-dropdown]'); | 
					
						
							|  |  |  |                 var dropdown = container.find('.dropdown'); | 
					
						
							|  |  |  |                 dropdown.show().addClass('anim menuIn'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 container.mouseleave(function() { | 
					
						
							|  |  |  |                    dropdown.hide(); | 
					
						
							|  |  |  |                     dropdown.removeClass('anim menuIn'); | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-29 23:00:19 +08:00
										 |  |  |         }); | 
					
						
							|  |  |  |     </script> | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | </body> | 
					
						
							|  |  |  | </html> |