2015-07-08 03:34:58 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>Hypothetical Template</title>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2015-07-12 19:29:42 -04:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2015-07-08 03:34:58 -04:00
|
|
|
<script src="{{ elixir("js/lib.js") }}"></script>
|
|
|
|
<script src="{{ elixir("js/app.js") }}"></script>
|
|
|
|
@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
|
|
|
|
<link rel="stylesheet" href="{{ elixir('css/app.css') }}">
|
|
|
|
</head>
|
|
|
|
<body class="{{ Request::path() == "/" ? "index" : Request::path() }}">
|
|
|
|
@yield('page')
|
|
|
|
</body>
|
|
|
|
</html>
|