b1228ddb4b
- CSS 변수 확장 (색상, 스페이싱, 반응형 브레이크포인트) - 모든 요소 전환 애니메이션 추가 - 이미지 lazy load 지원 - 응답 압축 (gzip) 활성화 - 폰트 preconnect + DNS prefetch 최적화 - 375px ~ 초소형 화면 반응형 대응 - 게시물 레이아웃 개선 (섹션 구조, 메타데이터) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
41 lines
1.9 KiB
Plaintext
41 lines
1.9 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>@(ViewData["Title"] ?? "백원숙 세무회계")</title>
|
|
<meta name="description" content="@(ViewData["Description"] ?? "사업자 기장, 부동산 양도세·증여세, 종합소득세 전문 상담.")" />
|
|
<meta property="og:title" content="@ViewData["Title"]" />
|
|
<meta property="og:description" content="@ViewData["Description"]" />
|
|
<meta property="og:image" content="@ViewData["OgImage"]" />
|
|
<meta property="og:url" content="@ViewData["OgUrl"]" />
|
|
<meta name="robots" content="index, follow" />
|
|
<meta name="theme-color" content="#1B4F8A" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net" />
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap" rel="stylesheet" />
|
|
<link rel="canonical" href="@ViewData["CanonicalUrl"]" />
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
|
|
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
|
|
</head>
|
|
<body class="with-mobile-cta">
|
|
<partial name="_Header" />
|
|
<main role="main" class="pb-5">
|
|
@RenderBody()
|
|
</main>
|
|
<partial name="_Footer" />
|
|
|
|
<!-- Mobile Fixed CTA -->
|
|
<div class="mobile-cta-bar d-lg-none">
|
|
<a href="http://pf.kakao.com/_xoxchTX" target="_blank" class="btn-kakao-mobile">
|
|
💬 카카오 상담하기
|
|
</a>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" defer></script>
|
|
<script src="~/js/site.js" asp-append-version="true" defer></script>
|
|
@await RenderSectionAsync("Scripts", required: false)
|
|
</body>
|
|
</html>
|