{{ HTML::style('/css/style.css') }}
{{ HTML::route('home', 'Home') }}
@if(Auth::check())
{{ HTML::route('profile', 'Profile' ) }}
{{ HTML::route('logout', 'Logout ('.Auth::user()->username.')') }}
@else
{{ HTML::route('login', 'Login') }}
@endif
@if(Session::has('flash_notice'))
{{ Session::get('flash_notice') }}
@endif @yield('content')