{{-- Twitter Bootstrap CSS --}} {{ HTML::style('/css/vendor/bootstrap.min.css') }} {{ HTML::style('/css/vendor/bootstrap-theme.min.css') }} {{-- Application CSS --}} {{ HTML::style('/css/app.css') }} {{-- Alert Messages --}} @include('layouts.messages') {{-- Nav --}} @include ('layouts.nav') {{-- Inject HTML above the CSS container --}} @yield ('above-container')
@yield('content')
{{-- Inject HTML below the CSS container --}} @yield ('below-container') {{-- Footer --}} @include ('layouts.footer') {{-- jQuery --}} {{ HTML::script('/js/vendor/jquery-2.0.3.min.js') }} {{-- Twitter Bootstrap JavaScript --}} {{ HTML::script('/js/vendor/bootstrap.min.js') }} {{-- Application CSS / JavaScript --}} {{ HTML::script('/js/functions.js') }} {{ HTML::script('/js/app.js') }} @include ('layouts.analytics')