2014-06-29 15:12:33 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2014-06-30 00:26:38 -05:00
|
|
|
<base href="{{URL::route('index')}}/">
|
2014-08-31 01:59:43 -05:00
|
|
|
<title>Firefly
|
2014-09-10 15:22:44 -05:00
|
|
|
@if(isset($title) && $title != 'Firefly')
|
2014-08-31 01:59:43 -05:00
|
|
|
// {{{$title}}}
|
|
|
|
@endif
|
2014-09-12 10:34:54 -05:00
|
|
|
@if(isset($subTitle))
|
|
|
|
// {{{$subTitle}}}
|
|
|
|
@endif
|
2014-08-31 01:59:43 -05:00
|
|
|
</title>
|
2014-06-29 15:12:33 -05:00
|
|
|
|
2014-09-23 14:28:05 -05:00
|
|
|
<?php // echo stylesheet_link_tag(); ?>
|
2014-07-26 11:53:41 -05:00
|
|
|
@yield('styles')
|
|
|
|
|
2014-06-29 15:12:33 -05:00
|
|
|
<!--[if lt IE 9]>
|
2014-09-09 23:56:57 -05:00
|
|
|
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
|
|
|
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
2014-06-29 15:12:33 -05:00
|
|
|
<![endif]-->
|
|
|
|
</head>
|
|
|
|
<body>
|
2014-09-09 23:56:57 -05:00
|
|
|
<div id="wrapper">
|
|
|
|
|
2014-08-13 00:02:13 -05:00
|
|
|
@include('partials.menu')
|
2014-09-09 23:56:57 -05:00
|
|
|
|
|
|
|
<div id="page-wrapper">
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
2014-09-12 10:34:54 -05:00
|
|
|
<h1 class="page-header">
|
2014-09-12 14:47:27 -05:00
|
|
|
@if(isset($mainTitleIcon))
|
|
|
|
<i class="fa {{{$mainTitleIcon}}}"></i>
|
|
|
|
@endif
|
2014-09-12 10:34:54 -05:00
|
|
|
{{$title or '(no title)'}}
|
2014-09-10 07:39:38 -05:00
|
|
|
@if(isset($subTitle))
|
2014-09-12 10:34:54 -05:00
|
|
|
<small>
|
2014-09-12 14:47:27 -05:00
|
|
|
@if(isset($subTitleIcon))
|
|
|
|
<i class="fa {{{$subTitleIcon}}}"></i>
|
2014-09-12 10:34:54 -05:00
|
|
|
@endif
|
|
|
|
{{$subTitle}}
|
|
|
|
</small>
|
2014-09-10 07:39:38 -05:00
|
|
|
@endif
|
|
|
|
</h1>
|
2014-09-09 23:56:57 -05:00
|
|
|
</div>
|
|
|
|
<!-- /.col-lg-12 -->
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@include('partials.flashes')
|
|
|
|
|
|
|
|
@yield('content')
|
|
|
|
|
|
|
|
</div>
|
2014-06-29 15:12:33 -05:00
|
|
|
</div>
|
2014-08-23 15:32:12 -05:00
|
|
|
|
|
|
|
<div class="modal fade" id="reminderModal" tabindex="-1" role="dialog"
|
|
|
|
aria-labelledby="reminderModalLabel" aria-hidden="true">
|
|
|
|
<div class="modal-dialog modal-lg">
|
|
|
|
<div class="modal-content">
|
|
|
|
|
|
|
|
</div><!-- /.modal-content -->
|
|
|
|
</div><!-- /.modal-dialog -->
|
|
|
|
</div><!-- /.modal -->
|
|
|
|
|
|
|
|
|
2014-09-23 14:28:05 -05:00
|
|
|
<?php // echo javascript_include_tag(); ?>
|
2014-06-30 04:24:58 -05:00
|
|
|
@yield('scripts')
|
2014-06-29 15:12:33 -05:00
|
|
|
</body>
|
|
|
|
</html>
|