dbms_primeidc/extdbms/lib/Views/default_layout.php
2025-04-23 14:09:36 +09:00

32 lines
528 B
PHP

<!-- views/layout.blade.php -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@yield('title')</title>
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
<nav>
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/contact">Contact</a>
</nav>
</header>
<div class="content">
@yield('content')
</div>
<footer>
<p>&copy; 2025 My Website</p>
</footer>
</body>
</html>