2015-07-13 03:01:42 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2015-07-17 04:24:26 +08:00
|
|
|
<title>BookStack</title>
|
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-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="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">--}}
|
|
|
|
<link rel="stylesheet" href="/bower/material-design-iconic-font/dist/css/material-design-iconic-font.min.css">
|
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-14 05:15:56 +08:00
|
|
|
<script src="http://cdnjs.cloudflare.com/ajax/libs/vue/0.12.10/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-07-13 04:31:15 +08:00
|
|
|
@yield('head')
|
2015-07-13 03:01:42 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2015-07-24 04:55:46 +08:00
|
|
|
<section id="sidebar">
|
2015-08-06 03:59:39 +08:00
|
|
|
<div class="sidebar-bg"><div class="overlay"></div></div>
|
2015-07-24 04:55:46 +08:00
|
|
|
<header>
|
|
|
|
<div class="padded row clearfix">
|
2015-08-06 03:59:39 +08:00
|
|
|
<div class="col-md-12 logo-container">
|
2015-07-24 04:55:46 +08:00
|
|
|
{{--<div ><img class="logo float left" src="/bookstack.svg" alt="BookStack"></div>--}}
|
|
|
|
<div class="logo">BookStack</div>
|
2015-08-06 03:59:39 +08:00
|
|
|
<div><i class="zmdi zmdi-account"></i> {{ \Illuminate\Support\Facades\Auth::user()->name }}</div>
|
2015-07-17 02:53:24 +08:00
|
|
|
</div>
|
2015-07-16 05:55:49 +08:00
|
|
|
</div>
|
2015-07-24 04:55:46 +08:00
|
|
|
</header>
|
|
|
|
<div class="search-box">
|
|
|
|
<form action="/pages/search/all" id="search-form" method="GET">
|
|
|
|
<input type="text" placeholder="Search all pages..." name="term" id="search-input">
|
|
|
|
</form>
|
2015-07-13 03:01:42 +08:00
|
|
|
</div>
|
2015-08-16 22:05:02 +08:00
|
|
|
<div class="row menu">
|
|
|
|
<div class="col-md-4"><a href="/books"><i class="zmdi zmdi-book"></i>Books</a></div>
|
|
|
|
<div class="col-md-4"><a href="/users"><i class="zmdi zmdi-accounts"></i>Users</a></div>
|
|
|
|
<div class="col-md-4"><a href="/logout"><i class="zmdi zmdi-run zmdi-hc-flip-horizontal"></i>Logout</a></div>
|
|
|
|
</div>
|
2015-08-16 21:51:45 +08:00
|
|
|
@if(isset($book) && isset($current) && !isset($books))
|
2015-07-31 05:27:35 +08:00
|
|
|
<div class="book-tree">
|
|
|
|
@include('pages/sidebar-tree-list', ['book' => $book])
|
|
|
|
</div>
|
|
|
|
@endif
|
2015-07-22 05:11:30 +08:00
|
|
|
@yield('sidebar')
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<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-07-13 03:01:42 +08:00
|
|
|
</body>
|
|
|
|
</html>
|