17 lines
381 B
PHP
17 lines
381 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
|
<title>@yield('title','Lauck - Home')</title>
|
|
|
|
</head>
|
|
<body>
|
|
<header>Cabeza</header>
|
|
|
|
@yield('main')
|
|
|
|
<footer>Pies</footer>
|
|
</body>
|
|
</html> |