2015-07-08 03:34:58 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2015-12-11 23:36:05 -05:00
|
|
|
{!! Head::render() !!}
|
2016-01-26 23:20:08 -05:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
2015-07-12 19:46:22 -04:00
|
|
|
<script src="{{ elixir('js/lib.js') }}"></script>
|
2016-01-26 23:20:08 -05:00
|
|
|
@yield('page-includes')
|
2015-12-11 23:36:05 -05:00
|
|
|
|
2015-07-08 03:34:58 -04:00
|
|
|
@if (Config::get('app.debug'))
|
|
|
|
<script type="text/javascript">
|
|
|
|
document.write('<script src="//localhost:35729/livereload.js?snipver=1" type="text/javascript"><\/script>')
|
2015-07-11 06:27:21 -04:00
|
|
|
</script>
|
2015-07-08 03:34:58 -04:00
|
|
|
@endif
|
|
|
|
</head>
|
2016-01-26 23:20:08 -05:00
|
|
|
<body class="{{ Request::path() == '/' ? 'index' : preg_replace('/\/.*/', '', Request::path()) }}">
|
2015-12-01 01:07:03 -05:00
|
|
|
@yield('page-top')
|
2016-01-28 22:28:05 -05:00
|
|
|
<div id="page-content">@yield('content')</div>
|
2015-12-01 01:07:03 -05:00
|
|
|
@yield('page-bottom')
|
2015-07-08 03:34:58 -04:00
|
|
|
</body>
|
|
|
|
</html>
|