suitmedia/suitcoda

View on GitHub
resources/views/_layouts/base.blade.php

Summary

Maintainability
A
0 mins
Test Coverage
<!doctype html>
<!--[if IE 8]>         <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
    @include('_include.head')
    <body>
        <div class="site">
            @yield('header')
            @yield('main-content')
            @include('_include.footer')
        </div>
        @include('_include.script')
    </body>
</html>