BookStack/resources/views/base.blade.php

57 lines
2.1 KiB
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
<!DOCTYPE html>
<html>
<head>
2015-07-16 20:24:26 +00:00
<title>BookStack</title>
2015-07-12 19:01:42 +00:00
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="/css/app.css">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700,700italic,300italic,100,300' rel='stylesheet' type='text/css'>
2015-07-12 20:31:15 +00:00
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
2015-07-12 19:01:42 +00:00
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
2015-07-15 21:55:49 +00:00
<script src="/bower/bootstrap/dist/js/bootstrap.js"></script>
<script>
$.fn.smoothScrollTo = function() {
2015-07-16 18:15:22 +00:00
if(this.length === 0) return;
2015-07-15 21:55:49 +00: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 18:53:24 +00:00
$.expr[":"].contains = $.expr.createPseudo(function(arg) {
return function( elem ) {
return $(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0;
};
});
2015-07-15 21:55:49 +00:00
</script>
2015-07-12 20:31:15 +00:00
@yield('head')
2015-07-12 19:01:42 +00:00
</head>
<body>
2015-07-15 21:55:49 +00:00
<header>
<div class="container">
2015-07-16 18:53:24 +00:00
<div class="padded-vertical row clearfix">
<div class="col-md-3">
2015-07-16 20:24:26 +00:00
<div ><img class="logo float left" src="/bookstack.svg" alt="BookStack"></div>
2015-07-16 18:53:24 +00:00
</div>
<div class="col-md-9">
<ul class="menu float">
<li><a href="/books"><i class="fa fa-book"></i>Books</a></li>
</ul>
<div class="search-box float right">
<form action="/pages/search/all" id="search-form" method="GET">
{!! csrf_field() !!}
<input type="text" placeholder="Search all pages..." name="term" id="search-input">
</form>
</div>
</div>
2015-07-15 21:55:49 +00:00
</div>
2015-07-12 19:01:42 +00:00
</div>
</header>
<section class="container">
@yield('content')
</section>
2015-07-16 18:15:22 +00:00
@yield('bottom')
2015-07-12 19:01:42 +00:00
</body>
</html>