19 lines
333 B
PHP
19 lines
333 B
PHP
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ $title ?? '대시보드' }}</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
@include('inc.topbar')
|
|
|
|
<div class="container mt-4">
|
|
|
|
@yield('main')
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|