-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
72 lines (69 loc) · 3.89 KB
/
Copy pathpost.html
File metadata and controls
72 lines (69 loc) · 3.89 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy"
content="script-src 'self' https://cdn.jsdelivr.net; object-src 'none'; base-uri 'none'">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kyumswriting</title>
<!-- 아래 두 표시 사이는 tools/build-meta/generate.mjs 가 글마다 채워 넣는다.
이 파일 자체(post.html?slug=)는 비워 둔 채로 계속 동작한다. -->
<!-- meta:start --><!-- meta:end -->
<link rel="icon" href="/assets/favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css" integrity="sha384-GIdEBaqGN9mNkDkMkzMHW8EKUqtpPIe/sLj1X7DIrnc9uPtLROJgmuDlh+3rBw0j" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-mono@5.3.0/latin.css" integrity="sha384-GDuWkQ2vJ3WLB+Pwjr2vmR7AG/si+whIv67zaJbePaDliRT2+WESPt1RYPPu5/4P" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.18.1/dist/katex.min.css" integrity="sha384-1vdNCNel6Tx/NQa8IR1mGOGKsbGreCkOPfbtPPnUURJ5Tu2PRVfQ/7KLZC+Pi1p1" crossorigin="anonymous">
<link rel="stylesheet" href="/css/theme.css">
<link rel="stylesheet" href="/css/base.css">
<link rel="stylesheet" href="/css/components.css">
<link rel="stylesheet" href="/css/post.css">
<script src="/js/theme.js"></script>
</head>
<body>
<header class="site-header">
<div class="inner">
<div class="left">
<button class="menu-btn" id="menu-btn" aria-label="메뉴 열기" aria-expanded="false" aria-controls="drawer">
<span></span><span></span><span></span>
</button>
<a class="site-logo" href="/">kyumswriting<span class="suffix">.log</span></a>
</div>
<nav class="header-actions">
<a class="nav-link" href="/">index</a>
<a class="nav-link" href="/archive.html">archive</a>
<a class="nav-link" href="/tags.html">tags</a>
<a class="nav-link" href="/admin.html">write</a>
<button class="theme-btn" id="theme-toggle" data-theme-toggle title="테마 전환" aria-label="테마 전환">
<span class="to-dark">DARK</span><span class="to-light">LIGHT</span>
</button>
</nav>
</div>
</header>
<main class="container">
<article class="post-view">
<div class="post-loading" id="post-loading">불러오는 중</div>
<nav class="post-crumb" id="post-crumb" aria-label="위치"></nav>
<header class="post-head" id="post-head"></header>
<dl class="post-spec" id="post-spec"></dl>
<div class="prose" id="post-body"></div>
<footer id="post-footer" style="display:none">
<nav class="post-nav" id="post-nav" aria-label="이전 다음 글"></nav>
<div class="comments" id="comments"></div>
</footer>
</article>
</main>
<footer class="site-footer">
<span>© 2026 IM5K58</span>
<a href="https://pages.github.com" target="_blank" rel="noopener">GITHUB PAGES</a>
</footer>
<script src="https://cdn.jsdelivr.net/npm/katex@0.18.1/dist/katex.min.js" integrity="sha384-ycJ6GAwiS15LoUPipwJOrWTvkUHl/YqELValBwI5I4awP1EeEQJYarj+w85ntcz7" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/marked@12.0.2/marked.min.js" integrity="sha384-/TQbtLCAerC3jgaim+N78RZSDYV7ryeoBCVqTuzRrFec2akfBkHS7ACQ3PQhvMVi" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/dompurify@3.1.6/dist/purify.min.js" integrity="sha384-+VfUPEb0PdtChMwmBcBmykRMDd+v6D/oFmB3rZM/puCMDYcIvF968OimRh4KQY9a" crossorigin="anonymous"></script>
<script src="/js/config.js"></script>
<script src="/js/posts.js"></script>
<script src="/js/ui.js"></script>
<script src="/js/render.js"></script>
<script src="/js/page-post.js"></script>
<script src="/js/menu.js"></script>
</body>
</html>