PHP Classes

File: Modules/ThemeBusiness/Resources/views/frontend/layouts/master.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   LaraCMS   Modules/ThemeBusiness/Resources/views/frontend/layouts/master.blade.php   Download  
File: Modules/ThemeBusiness/Resources/views/frontend/layouts/master.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: LaraCMS
Content management system based on Laravel
Author: By
Last change:
Date: 1 year ago
Size: 780 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <title>@yield('title', config('app.name'))</title>
    @include('themebusiness::frontend.layouts.partials.meta_tags')
    @yield('social_meta_tags')
    @include('themebusiness::frontend.layouts.partials.styles')
</head>

<body>
    <div class="page-wrapper" style="margin-bottom: 0px!important">
        @include('themebusiness::frontend.layouts.partials.header')
        @yield('main-content')
        @include('themebusiness::frontend.layouts.partials.footer')
    </div>

    @include('themebusiness::frontend.layouts.partials.scripts')
</body>

</html>