52 lines
2.2 KiB
Plaintext
52 lines
2.2 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>
|
|
@try
|
|
{
|
|
@await Html.PartialAsync("_Footer");
|
|
}
|
|
catch
|
|
{
|
|
<footer class="bg-light border-top mt-5 py-4">
|
|
<div class="container text-center small text-muted">
|
|
<p>© 2026 백원숙 세무회계</p>
|
|
</div>
|
|
</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>
|