Files
2025-12-01 06:39:04 +08:00

43 lines
960 B
PHP

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@yield('title', 'Kiri Blade 示例')</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background: #333;
color: white;
padding: 1rem;
margin-bottom: 2rem;
}
footer {
background: #f5f5f5;
padding: 1rem;
margin-top: 2rem;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>@yield('header', 'Kiri Blade 模板引擎')</h1>
</header>
<main>
@yield('content')
</main>
<footer>
<p>&copy; {{ date('Y') }} Kiri Framework. 使用 Blade 模板引擎构建。</p>
</footer>
</body>
</html>