BookStack/resources/views/base.blade.php

57 lines
2.1 KiB
PHP
Raw Normal View History

2015-07-12 15:01:42 -04:00
<!DOCTYPE html>
<html>
<head>
2015-07-16 16:24:26 -04:00
<title>BookStack</title>
2015-07-12 15:01:42 -04:00
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="/css/app.css">
2015-07-27 15:17:08 -04: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-12 16:31:15 -04:00
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
2015-07-12 15:01:42 -04:00
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
2015-07-15 17:55:49 -04:00
<script src="/bower/bootstrap/dist/js/bootstrap.js"></script>
2015-07-21 15:13:29 -04:00
<script src="/bower/jquery-sortable/source/js/jquery-sortable.js"></script>
2015-07-15 17:55:49 -04:00
<script>
$.fn.smoothScrollTo = function() {
2015-07-16 14:15:22 -04:00
if(this.length === 0) return;
2015-07-15 17:55:49 -04: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-16 14:53:24 -04:00
$.expr[":"].contains = $.expr.createPseudo(function(arg) {
return function( elem ) {
return $(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0;
};
});
2015-07-15 17:55:49 -04:00
</script>
2015-07-12 16:31:15 -04:00
@yield('head')
2015-07-12 15:01:42 -04:00
</head>
<body>
<section id="sidebar">
<header>
<div class="padded row clearfix">
<div class="col-md-12">
{{--<div ><img class="logo float left" src="/bookstack.svg" alt="BookStack"></div>--}}
<div class="logo">BookStack</div>
2015-07-16 14:53:24 -04:00
</div>
2015-07-15 17:55:49 -04:00
</div>
</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-12 15:01:42 -04:00
</div>
<ul class="menu">
<li><a href="/books"><i class="fa fa-book"></i>Books</a></li>
</ul>
2015-07-21 17:11:30 -04:00
@yield('sidebar')
</section>
<section id="content">
2015-07-12 15:01:42 -04:00
@yield('content')
</section>
2015-07-16 14:15:22 -04:00
@yield('bottom')
2015-07-12 15:01:42 -04:00
</body>
</html>