mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
20 lines
755 B
PHP
20 lines
755 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{!! Head::render() !!}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
|
<script src="{{ elixir('js/lib.js') }}"></script>
|
|
@yield('page-includes')
|
|
|
|
@if (Config::get('app.debug'))
|
|
<script type="text/javascript">
|
|
document.write('<script src="//localhost:35729/livereload.js?snipver=1" type="text/javascript"><\/script>')
|
|
</script>
|
|
@endif
|
|
</head>
|
|
<body class="{{ Request::path() == '/' ? 'index' : preg_replace('/\/.*/', '', Request::path()) }}">
|
|
@yield('page-top')
|
|
<div id="page-content">@yield('content')</div>
|
|
@yield('page-bottom')
|
|
</body>
|
|
</html>
|