<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
    <head>
        @include('frontend.layouts.common.head')
    </head>
    <body class="text-dark">
        @stack('body.prepend')

        @section('header')
            @include('frontend.sections.header-home')
        @show

        @yield('main')

        @section('footer')
            @include('frontend.sections.footer')
        @show

        @stack('body.append')
    </body>
</html>
