14 lines
212 B
PHP
14 lines
212 B
PHP
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
@include('partials.home.head')
|
|
</head>
|
|
<body>
|
|
@include('partials.home.header')
|
|
|
|
@yield('content')
|
|
|
|
@include('partials.home.footer')
|
|
</body>
|
|
</html>
|