2015-07-13 03:01:42 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Oxbow</title>
|
|
|
|
<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-13 04:31:15 +08:00
|
|
|
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.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-13 04:31:15 +08:00
|
|
|
@yield('head')
|
2015-07-13 03:01:42 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<header class="container">
|
|
|
|
<div class="padded-vertical clearfix">
|
|
|
|
<div class="logo float left">Oxbow</div>
|
|
|
|
<ul class="menu float right">
|
|
|
|
<li><a href="/books">Books</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<section class="container">
|
|
|
|
@yield('content')
|
|
|
|
</section>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|