21 lines
342 B
PHP
21 lines
342 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
@include('components.partials.home._meta')
|
|
@include('components.partials.home._css')
|
|
</head>
|
|
|
|
<body>
|
|
|
|
@include("components.partials.home._header")
|
|
|
|
{{ $slot }}
|
|
|
|
@include("components.partials.home._footer")
|
|
|
|
@include('components.partials.home._js')
|
|
</body>
|
|
|
|
</html>
|