-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskin.html
More file actions
540 lines (494 loc) · 26.4 KB
/
skin.html
File metadata and controls
540 lines (494 loc) · 26.4 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>[##_page_title_##]</title>
<!-- Preconnect -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://cdn.jsdelivr.net">
<!-- Fonts -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<!-- highlight.js theme (JS controls switching) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github.min.css" id="hljs-theme">
<!-- Skin stylesheet -->
<link rel="stylesheet" href="./style.css">
<!-- FOUC prevention -->
<script>
(function(){
var theme = localStorage.getItem('monolog-theme');
var defaultDark = '[##_var_dark_mode_default_##]' === 'true';
var isDark = theme === 'dark' || (!theme && (defaultDark || window.matchMedia('(prefers-color-scheme: dark)').matches));
if(isDark){
document.documentElement.classList.add('dark');
var el = document.getElementById('hljs-theme');
if(el) el.href = 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github-dark.min.css';
}
})();
</script>
<!-- Skin variables -->
<style>
:root {
--accent: [##_var_accent_color_##];
}
body {
font-family: "[##_var_font_family_##]", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
code, pre code {
font-family: "[##_var_code_font_##]", "Fira Code", "Source Code Pro", monospace;
}
</style>
</head>
<body data-plantuml-enabled="[##_var_enable_plantuml_##]" data-layout="[##_var_layout_style_##]" data-sidebar="[##_var_show_sidebar_##]" data-toc="[##_var_show_toc_##]" data-code-theme="[##_var_code_theme_##]" data-cover-image="[##_var_cover_image_##]">
<!-- ============================================================
HEADER
============================================================ -->
<header class="header">
<div class="header-inner container">
<div class="header-brand">
<h1 class="header-logo">
<a href="/">[##_title_##]</a>
</h1>
<p class="blog-subtitle">[##_var_subtitle_##]</p>
</div>
<nav class="header-nav" aria-label="메인 내비게이션">
[##_blog_menu_##]
</nav>
<div class="header-actions">
<!-- Write new post -->
<a href="/manage/newpost/" class="btn-icon btn-write" aria-label="새 글 쓰기" title="새 글 쓰기">
<svg class="icon icon-write" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"></path>
<path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"></path>
</svg>
</a>
<!-- Dark mode toggle -->
<button type="button" class="btn-icon dark-toggle" data-action="toggle-theme" aria-label="다크모드 전환">
<svg class="icon icon-sun" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
<svg class="icon icon-moon" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
</svg>
</button>
<!-- Search toggle -->
<button type="button" class="btn-icon search-toggle" data-action="open-search" aria-label="검색 열기">
<svg class="icon icon-search" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<circle cx="11" cy="11" r="8"></circle>
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
</svg>
</button>
<!-- Mobile menu toggle -->
<button type="button" class="btn-icon hamburger" data-action="toggle-mobile-menu" aria-label="메뉴 열기" aria-expanded="false">
<svg class="icon icon-menu" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
<svg class="icon icon-close" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
</svg>
</button>
</div>
</div>
<!-- Mobile nav drawer -->
<div class="mobile-menu" data-mobile-nav aria-hidden="true">
<nav aria-label="모바일 내비게이션">
[##_blog_menu_##]
</nav>
</div>
</header>
<!-- Reading Progress Bar -->
<div class="reading-progress" aria-hidden="true">
<div class="reading-progress-bar"></div>
</div>
<!-- ============================================================
MAIN CONTENT
============================================================ -->
<main id="content">
<div class="container layout">
<!-- ========================================================
ARTICLE CONTENT AREA
======================================================== -->
<div class="content-area">
<!-- ======================================================
ARTICLE LOOP (s_article_rep wraps both index and permalink)
====================================================== -->
<div class="post-list">
<s_notice_rep>
<article class="post-card notice">
<div class="post-info">
<span class="notice-badge">공지</span>
<h2 class="post-title">
<a href="[##_notice_rep_link_##]">[##_notice_rep_title_##]</a>
</h2>
<time class="post-date" datetime="[##_notice_rep_date_##]">[##_notice_rep_date_##]</time>
</div>
</article>
</s_notice_rep>
<s_article_rep>
<s_index_article_rep>
<article class="post-card">
<s_article_rep_thumbnail>
<a href="[##_article_rep_link_##]" class="post-thumbnail">
<img src="[##_article_rep_thumbnail_url_##]" alt="[##_article_rep_title_##]" loading="lazy">
</a>
</s_article_rep_thumbnail>
<div class="post-info">
<span class="post-category">[##_article_rep_category_##]</span>
<h2 class="post-title">
<a href="[##_article_rep_link_##]">[##_article_rep_title_##]</a>
</h2>
<p class="post-summary">[##_article_rep_summary_##]</p>
<time class="post-date">[##_article_rep_date_##]</time>
</div>
</article>
</s_index_article_rep>
<s_permalink_article_rep>
<article class="post">
<!-- Post header -->
<header class="post-header">
<span class="post-category">[##_article_rep_category_##]</span>
<h1 class="post-title">[##_article_rep_title_##]</h1>
<div class="post-meta">
<time datetime="[##_article_rep_date_##]">[##_article_rep_date_##]</time>
<span class="reading-time" data-reading-time></span>
</div>
<!-- Admin buttons -->
<s_ad_div>
<div class="post-admin">
<a href="[##_s_ad_m_link_##]" class="btn-admin">수정</a>
<a href="#" onclick="[##_s_ad_d_onclick_##]" class="btn-admin btn-admin--delete">삭제</a>
</div>
</s_ad_div>
</header>
<!-- Table of contents -->
<div id="toc" class="toc" data-toc aria-label="목차"></div>
<!-- Post body -->
<div class="post-content" data-post-content>
[##_article_rep_desc_##]
</div>
<!-- Tags -->
<s_tag_label>
<div class="post-tags">
<s_tag_label_rep>
<a href="[##_tag_link_##]">[##_tag_name_##]</a>
</s_tag_label_rep>
</div>
</s_tag_label>
<!-- Prev / Next navigation -->
<nav class="post-navigation" aria-label="이전/다음 글">
<s_article_prev>
<a href="[##_prev_link_##]" class="post-nav-item">
<span class="post-nav-label">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<line x1="19" y1="12" x2="5" y2="12"></line>
<polyline points="12 19 5 12 12 5"></polyline>
</svg>
이전 글
</span>
<span class="post-nav-title">[##_prev_title_##]</span>
</a>
</s_article_prev>
<s_article_next>
<a href="[##_next_link_##]" class="post-nav-item next">
<span class="post-nav-label">
다음 글
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</span>
<span class="post-nav-title">[##_next_title_##]</span>
</a>
</s_article_next>
</nav>
<!-- Comments -->
<section class="comments-section" id="comments">
<s_rp>
<h3 class="comments-title">댓글 <span class="comments-count">[##_rp_count_##]</span></h3>
<s_rp_container>
<div class="comment-list">
<s_rp_rep>
<div class="comment-item [##_rp_rep_class_##]" id="[##_rp_rep_id_##]">
<div class="comment-inner">
<img src="[##_rp_rep_logo_##]" class="comment-avatar" alt="">
<div class="comment-content">
<div class="comment-header">
<span class="comment-author">[##_rp_rep_name_##]</span>
<time class="comment-date">[##_rp_rep_date_##]</time>
</div>
<div class="comment-body">[##_rp_rep_desc_##]</div>
<div class="comment-actions">
<button type="button" onclick="[##_rp_rep_onclick_reply_##]">답글</button>
<s_rp_rep_admin>
<button type="button" onclick="[##_rp_rep_onclick_delete_##]">삭제</button>
</s_rp_rep_admin>
</div>
</div>
</div>
<!-- Nested replies -->
<s_rp2_container>
<div class="reply-list">
<s_rp2_rep>
<div class="comment-item comment-reply [##_rp_rep_class_##]" id="[##_rp_rep_id_##]">
<div class="comment-inner">
<img src="[##_rp_rep_logo_##]" class="comment-avatar" alt="">
<div class="comment-content">
<div class="comment-header">
<span class="comment-author">[##_rp_rep_name_##]</span>
<time class="comment-date">[##_rp_rep_date_##]</time>
</div>
<div class="comment-body">[##_rp_rep_desc_##]</div>
<div class="comment-actions">
<s_rp_rep_admin>
<button type="button" onclick="[##_rp_rep_onclick_delete_##]">삭제</button>
</s_rp_rep_admin>
</div>
</div>
</div>
</div>
</s_rp2_rep>
</div>
</s_rp2_container>
</div>
</s_rp_rep>
</div>
</s_rp_container>
<!-- Comment input form -->
<s_rp_input_form>
<div class="comment-form">
<s_rp_guest>
<div class="form-row">
<input type="text" name="[##_rp_input_name_##]" id="[##_rp_input_name_##]" placeholder="이름" value="[##_guest_name_##]">
<input type="password" name="[##_rp_input_password_##]" id="[##_rp_input_password_##]" placeholder="비밀번호">
</div>
</s_rp_guest>
<textarea name="[##_rp_input_comment_##]" id="[##_rp_input_comment_##]" rows="4" placeholder="댓글을 입력하세요"></textarea>
<div class="comment-form-footer">
<s_rp_member>
<label class="secret-check">
<input type="checkbox" name="[##_rp_input_is_secret_##]" id="[##_rp_input_is_secret_##]">
<span>비밀글</span>
</label>
</s_rp_member>
<button type="submit" class="btn-submit" onclick="[##_rp_onclick_submit_##]">등록</button>
</div>
</div>
</s_rp_input_form>
</s_rp>
</section>
</article>
</s_permalink_article_rep>
</s_article_rep>
</div>
<!-- ======================================================
PROTECTED POST
====================================================== -->
<s_article_protected>
<div class="protected-post">
<svg class="protected-post__icon" width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect>
<path d="M7 11V7a5 5 0 0 1 10 0v4"></path>
</svg>
<h2 class="protected-post__title">보호된 글입니다</h2>
<p class="protected-post__desc">이 글은 비밀번호로 보호되어 있습니다.</p>
<form class="protected-post__form">
[##_article_password_##]
</form>
</div>
</s_article_protected>
<!-- ======================================================
GUESTBOOK
====================================================== -->
[##_guestbook_group_##]
<s_guestbook_rep>
<div class="guestbook">
<div class="guestbook-list">
<s_guestbook_rep_rep>
<div class="guestbook-entry" id="[##_guestbook_rep_id_##]">
<div class="guestbook-header">
<span class="guestbook-author">[##_guestbook_rep_name_##]</span>
<time class="guestbook-date">[##_guestbook_rep_date_##]</time>
</div>
<div class="guestbook-body">[##_guestbook_rep_desc_##]</div>
<div class="comment-actions">
<button type="button" onclick="[##_guestbook_rep_onclick_reply_##]">답글</button>
<button type="button" onclick="[##_guestbook_rep_onclick_delete_##]">삭제</button>
</div>
<!-- Guestbook replies -->
<s_guestbook_rep_reply>
<div class="comment-reply">
<div class="comment-header">
<span class="comment-author">[##_guestbook_rep_reply_name_##]</span>
<time class="comment-date">[##_guestbook_rep_reply_date_##]</time>
</div>
<div class="comment-body">[##_guestbook_rep_reply_desc_##]</div>
<div class="comment-actions">
<button type="button" onclick="[##_guestbook_rep_reply_onclick_delete_##]">삭제</button>
</div>
</div>
</s_guestbook_rep_reply>
</div>
</s_guestbook_rep_rep>
</div>
<!-- Guestbook write form -->
[##_guestbook_input_form_##]
<div class="guestbook-form">
<div class="form-row">
<input type="text" name="name" placeholder="이름" value="[##_guestbook_input_name_##]">
<input type="password" name="password" placeholder="비밀번호" value="[##_guestbook_input_password_##]">
</div>
<input type="url" name="homepage" placeholder="홈페이지" value="[##_guestbook_input_homepage_##]">
<textarea name="comment" rows="4" placeholder="방명록을 남겨주세요">[##_guestbook_input_comment_##]</textarea>
<div class="form-row">
<label>
<input type="checkbox" name="secret" [##_guestbook_input_is_secret_##]>
<span>비밀글</span>
</label>
<button type="submit" class="btn-submit">등록</button>
</div>
</div>
[##_guestbook_input_form_##]
</div>
</s_guestbook_rep>
<!-- ======================================================
PAGINATION
====================================================== -->
<s_paging>
<nav class="pagination" aria-label="페이지 내비게이션">
<a [##_prev_page_##] class="prev [##_no_more_prev_##]" aria-label="이전 페이지">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<polyline points="15 18 9 12 15 6"></polyline>
</svg>
</a>
<s_paging_rep>
<a [##_paging_rep_link_##] class="num">[##_paging_rep_link_num_##]</a>
</s_paging_rep>
<a [##_next_page_##] class="next [##_no_more_next_##]" aria-label="다음 페이지">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</a>
</nav>
</s_paging>
</div><!-- /.content-area -->
<!-- ========================================================
SIDEBAR
======================================================== -->
<div class="sidebar" role="complementary" aria-label="사이드바">
<!-- Category navigation (always visible) -->
<div class="sidebar-widget sidebar-category">
<h3 class="sidebar-widget-title">카테고리</h3>
[##_category_##]
</div>
<s_sidebar>
<s_sidebar_element>
<div class="sidebar-widget">
<h3 class="sidebar-widget-title">[##_title_##]</h3>
[##_content_##]
</div>
</s_sidebar_element>
</s_sidebar>
</div>
</div><!-- /.container.layout -->
</main>
<!-- ============================================================
SEARCH OVERLAY
============================================================ -->
<div class="search-overlay" data-search-overlay aria-hidden="true" role="dialog" aria-modal="true" aria-label="검색">
<div class="search-container">
<button type="button" class="search-close" data-action="close-search" aria-label="검색 닫기">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
</svg>
</button>
<form class="search-input-wrap" data-search-form action="/search" method="get">
<label for="search-input" class="sr-only">검색어 입력</label>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<circle cx="11" cy="11" r="8"></circle>
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
</svg>
<input type="text" id="search-input" name="keyword" placeholder="검색어를 입력하세요" autocomplete="off" data-search-input>
</form>
</div>
</div>
<!-- ============================================================
IMAGE LIGHTBOX
============================================================ -->
<div class="lightbox" data-lightbox aria-hidden="true" role="dialog" aria-modal="true" aria-label="이미지 확대">
<button type="button" class="lightbox-close" aria-label="닫기">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
</svg>
</button>
<img class="lightbox-img" src="" alt="">
</div>
<!-- ============================================================
KEYBOARD SHORTCUTS
============================================================ -->
<div class="kbd-overlay" data-kbd-overlay aria-hidden="true" role="dialog" aria-modal="true" aria-label="키보드 단축키">
<div class="kbd-inner">
<h3>키보드 단축키</h3>
<div class="kbd-grid">
<div class="kbd-item"><kbd>/</kbd><span>검색</span></div>
<div class="kbd-item"><kbd>d</kbd><span>다크모드 전환</span></div>
<div class="kbd-item"><kbd>t</kbd><span>목차 토글</span></div>
<div class="kbd-item"><kbd>j</kbd><span>다음 글</span></div>
<div class="kbd-item"><kbd>k</kbd><span>이전 글</span></div>
<div class="kbd-item"><kbd>h</kbd><span>홈으로</span></div>
<div class="kbd-item"><kbd>?</kbd><span>단축키 도움말</span></div>
<div class="kbd-item"><kbd>Esc</kbd><span>닫기</span></div>
</div>
<button type="button" class="kbd-close">닫기</button>
</div>
</div>
<!-- ============================================================
BACK TO TOP
============================================================ -->
<button type="button" class="back-to-top" data-action="back-to-top" aria-label="맨 위로 스크롤">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<line x1="12" y1="19" x2="12" y2="5"></line>
<polyline points="5 12 12 5 19 12"></polyline>
</svg>
</button>
<!-- Resume Reading Banner -->
<div class="resume-reading" data-resume-reading>
<span>이전에 읽던 위치가 있습니다</span>
<button type="button" class="resume-reading-btn" data-resume-go>이어 읽기</button>
<button type="button" class="resume-reading-dismiss" data-resume-dismiss aria-label="닫기">×</button>
</div>
<!-- ============================================================
FOOTER
============================================================ -->
<footer class="footer">
<div class="container">
<div class="footer-inner">
<p class="footer-title">[##_title_##]</p>
<p class="footer-copyright">© <span data-year></span> [##_title_##]. All rights reserved.</p>
<p class="footer-powered">Powered by <a href="https://www.tistory.com" target="_blank" rel="noopener noreferrer">Tistory</a></p>
</div>
<s_t3></s_t3>
</div>
</footer>
<!-- ============================================================
SCRIPTS
============================================================ -->
<script src="./images/pako.min.js" defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js" defer></script>
<script src="./images/script.js" defer></script>
</body>
</html>