16 lines
305 B
PHP
16 lines
305 B
PHP
<!DOCTYPE html>
|
|
<html class="" lang="en">
|
|
|
|
@include('front.layouts.partials.head')
|
|
|
|
<body>
|
|
@include('googletagmanager::body')
|
|
<div id="app">
|
|
@include('front.layouts.partials.nav')
|
|
<main>
|
|
@yield('content')
|
|
</main>
|
|
@include('front.layouts.partials.footer')
|
|
</div>
|
|
</body>
|
|
</html> |