Some small updates to various classes to support new stuff.

This commit is contained in:
James Cole
2014-09-12 17:34:54 +02:00
parent a1ba340ead
commit 0203fee174
8 changed files with 225 additions and 177 deletions

View File

@@ -9,6 +9,9 @@
@if(isset($title) && $title != 'Firefly')
// {{{$title}}}
@endif
@if(isset($subTitle))
// {{{$subTitle}}}
@endif
</title>
<?php echo stylesheet_link_tag(); ?>
@@ -28,9 +31,15 @@
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">{{$title or '(no title)'}}
<h1 class="page-header">
{{$title or '(no title)'}}
@if(isset($subTitle))
<small>{{$subTitle}}</small>
<small>
@if(isset($titleIcon))
<i class="fa {{{$titleIcon}}}"></i>
@endif
{{$subTitle}}
</small>
@endif
</h1>
</div>