Files
raby/resources/views/layout/base.blade.php

13 lines
262 B
PHP
Raw Normal View History

2020-02-27 19:09:54 -03:00
<!DOCTYPE html>
<html lang="es">
@include('layout.head')
<body>
2020-03-27 02:59:53 -03:00
<div id="page_container" class="ui fluid container">
2020-03-02 01:05:39 -03:00
@include('layout.header')
2020-04-07 15:37:21 -04:00
<div class="content">
@yield('page_content')
</div>
2020-03-02 01:05:39 -03:00
@include('layout.footer')
</div>
2020-02-27 19:09:54 -03:00
</body>