2026-02-04 16:55:00 +09:00

34 lines
1.1 KiB
PHP

<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex,nofollow,noarchive,nosnippet,noimageindex">
<meta name="googlebot" content="noindex,nofollow,noarchive,nosnippet">
<meta name="referrer" content="no-referrer">
<meta http-equiv="Cache-Control" content="no-store, no-cache, must-revalidate, max-age=0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>@yield('title', 'Admin') · {{ config('app.name') }}</title>
{{-- (선택) Pretendard를 이미 /assets/css/pretendard.css로 제공 중이면 재사용 --}}
<link rel="stylesheet" href="/assets/css/pretendard.css">
@vite(['resources/css/admin.css', 'resources/js/admin.js'])
@stack('head')
</head>
<body class="@yield('body_class', 'a-body')">
@yield('body')
@stack('scripts')
{{--@php 개발모드에서만 세션표시--}}
@env('local')
@include('admin.partials.dev_session_overlay')
@endenv
</body>
</html>