11 lines
196 B
PHP
11 lines
196 B
PHP
<!DOCTYPE html>
|
|
<html lang="es">
|
|
@include('layout.head')
|
|
<body>
|
|
<div id="page_container">
|
|
@include('layout.header')
|
|
@yield('page_content')
|
|
@include('layout.footer')
|
|
</div>
|
|
</body>
|