24 lines
334 B
PHP
24 lines
334 B
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<x-head />
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<main class="page-wrapper">
|
||
|
<!-- Header -->
|
||
|
<x-header />
|
||
|
<x-mobileNav />
|
||
|
|
||
|
@yield('content')
|
||
|
<!-- footer -->
|
||
|
<x-footer />
|
||
|
</main>
|
||
|
<!-- All Scripts -->
|
||
|
<x-comman />
|
||
|
<x-script />
|
||
|
</body>
|
||
|
|
||
|
</html>
|