|
|
@@ -5,7 +5,7 @@
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
<title>
|
|
|
@ViewData["Title"]
|
|
|
- @if (ViewData["Title"] != "")
|
|
|
+ @if (!string.IsNullOrEmpty(ViewData["Title"] as string))
|
|
|
{
|
|
|
<text>-</text>
|
|
|
}
|
|
|
@@ -117,7 +117,7 @@
|
|
|
<div class="flex-none mb-2 sm:mb-0">
|
|
|
<span>Copyright © @DateTime.Now.Year Kim jino All rights reserved.</span>
|
|
|
</div>
|
|
|
- <div class="flex-grow text-center sm:text-right"">
|
|
|
+ <div class="flex-grow text-center sm:text-right">
|
|
|
<small>※ 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.</small>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -130,5 +130,6 @@
|
|
|
<script src="@Url.Content("~/js/site.js")"></script>
|
|
|
|
|
|
@await RenderSectionAsync("Scripts", required: false)
|
|
|
+
|
|
|
</body>
|
|
|
</html>
|