-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (78 loc) · 2.66 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="./src/app/index.css" type="text/css" rel="stylesheet" />
<title>HLOG</title>
<meta
name="description"
content="최신 기술 소식과 튜토리얼을 제공하는 기술 블로그"
/>
<meta
name="google-site-verification"
content="bMt8FYpJgtjXzOuc5MEBrrPQw3dnzqT5VxX094_2qr0"
/>
<meta
name="keywords"
content="최신 기술 뉴스, 튜토리얼, 리뷰를 제공하는 Tech-Hlog입니다. 프로그래밍, 소프트웨어 개발, AI, 머신러닝"
/>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-R4HSMTFVN5"
></script>
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3070256927583867"
crossorigin="anonymous"
></script>
<script
async
src="https://fundingchoicesmessages.google.com/i/pub-3070256927583867?ers=1"
nonce="S8WljtsPK1FJDoh9z-gTLw"
></script>
<script nonce="S8WljtsPK1FJDoh9z-gTLw">
(function () {
function signalGooglefcPresent() {
if (!window.frames["googlefcPresent"]) {
if (document.body) {
const iframe = document.createElement("iframe");
iframe.style =
"width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;";
iframe.style.display = "none";
iframe.name = "googlefcPresent";
document.body.appendChild(iframe);
} else {
setTimeout(signalGooglefcPresent, 0);
}
}
}
signalGooglefcPresent();
})();
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-R4HSMTFVN5");
</script>
</head>
<body>
<div id="modal-portal"></div>
<div id="search-portal"></div>
<div
id="toast-portal"
class="fixed z-50 flex flex-col w-96 right-5 top-5"
></div>
<div id="root"></div>
<script type="module" src="/src/app/index.tsx"></script>
</body>
</html>