9 lines
153 B
PHP
9 lines
153 B
PHP
<!DOCTYPE html>
|
|
<html lang="es">
|
|
@include('layout.head')
|
|
<body>
|
|
@include('layout.header')
|
|
@yield('page_content')
|
|
@include('layout.footer')
|
|
</body>
|