]> BookStack Code Mirror - bookstack/blob - resources/views/base.blade.php
a8e17ce7e29a540fbad1e65f1ab43dfc21f290bb
[bookstack] / resources / views / base.blade.php
1 <!DOCTYPE html>
2 <html>
3 <head>
4     <title>Oxbow</title>
5     <meta name="viewport" content="width=device-width">
6     <link rel="stylesheet" href="/css/app.css">
7     <link href='http://fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700,700italic,300italic,100,300' rel='stylesheet' type='text/css'>
8     <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
9     <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
10     <script src="/bower/bootstrap/dist/js/bootstrap.js"></script>
11     <script>
12         $.fn.smoothScrollTo = function() {
13             $('body').animate({
14                 scrollTop: this.offset().top - 60 // Adjust to change final scroll position top margin
15             }, 800); // Adjust to change animations speed (ms)
16             return this;
17         };
18     </script>
19     @yield('head')
20 </head>
21 <body>
22
23     <header>
24         <div class="container">
25             <div class="padded-vertical clearfix">
26                 <div class="logo float left">Oxbow</div>
27                 <ul class="menu float right">
28                     <li><a href="/books"><i class="fa fa-book"></i>Books</a></li>
29                 </ul>
30             </div>
31         </div>
32     </header>
33
34     <section class="container">
35         @yield('content')
36     </section>
37
38 </body>
39 </html>