<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/html"> <head> <title>@yield('title')</title> <!-- font require--> {{ HTML::style('library/fonts/font-awesome-4.0.3/css/font-awesome.css') }} <!--js require--> {{ HTML::script('library/js/jquery-1.9.0.js') }} {{ HTML::script('library/js/jquery-ui-1.10.4.custom.min.js') }} {{ HTML::script('library/js/bootstrap.js') }} {{ HTML::script('library/js/jValidate/jquery.validate.js') }} <!-- {{ HTML::script('library/js/home.init.js') }}--> {{ HTML::script('library/js/home.js') }} <!-- css require--> {{ HTML::style('library/css/bootstrap.css') }} {{ HTML::style('library/css/normalize.css') }} {{ HTML::style('library/css/home_style.css') }} {{ HTML::style('library/css/style.css') }} {{ HTML::style('library/css/jquery-ui-1.10.4.custom.css') }} </head> <body> {{ Session::put("RedirectURL",$_SERVER['REQUEST_URI']);}} <!--navbar top--> @include('home.header') <!--this is main--> <script> $(document).ready(function(){ $('#carousel').carousel(); }) </script> <div class="container main-content"> <div class="row"> <div class="topCol col-md-12"> @yield('topCol') </div> <div class="leftCol col-md-8 col-sm-12"> @yield('leftCol') </div> <div class="rightCol col-md-4"> @yield('rightCol') </div> </div> </div> <!--this is footer--> @include('home.footer') <a id="toTop" style="display: none;"><span id="toTopHover" style="opacity: 0;"></span>To Top</a> </body> </html>