-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (110 loc) · 4.11 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
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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Tistory Skin Template</title>
<link href="/favicon.ico" rel="shortcut icon" />
<link as="style" crossorigin
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard-dynamic-subset.min.css"
rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<link as="style" crossorigin href="./tistory.css" rel="stylesheet" />
<link as="style"
href="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-b39cbb91e82c71c0b7d79bc57d8787be444fd0df/static/style/comment.css"
rel="stylesheet" />
<link as="style"
href="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-b39cbb91e82c71c0b7d79bc57d8787be444fd0df/static/style/content.css"
rel="stylesheet" />
<link as="style"
href="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-b39cbb91e82c71c0b7d79bc57d8787be444fd0df/static/style/postBtn.css"
rel="stylesheet" />
<link as="style"
href="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-902dc0cb26fb26d270f15e63a9e4a51a16e707a0/static/style/tistory.css"
rel="stylesheet" />
<script type="text/javascript" src="/scripts/base.js"></script>
</head>
<body>
<div id="root"></div>
<!-- 교체 -->
<div id="tistory" style="display: none;">
<pre id="blog">
{
"title": "블로그 제목",
"description": "블로그 설명",
"blogger": "블로그 소유자 이름",
"imageURL": "블로그 대표 이미지 주소"
}
</pre>
<div id="menu">
<ul>
<li class="t_menu_link_1 first">
<a href="/" target="_black">메뉴 1</a>
</li>
<li class="t_menu_link_2 last">
<a href="/" target="_black">메뉴 2</a>
</li>
</ul>
</div>
<div id="category">
<ul class="tt_category">
<li class>
<a href="/category" class="link_tit">
분류 전체 보기 <span class="c_cnt">(10)</span>
</a>
<ul class="category_list">
<li class>
<a href="/category/카테고리%201"
class="link_item">
카테고리 1 <span class="c_cnt">(2)</span>
</a>
</li>
<li class>
<a href="/category/카테고리%202"
class="link_item">
카테고리 2 <span class="c_cnt">(3)</span>
</a>
</li>
<li class>
<a href="/category/카테고리%203"
class="link_item">
카테고리 3 <span class="c_cnt">(5)</span>
</a>
</li>
</ul>
</li>
</ul>
</div>
<div id="article">
<div class="article">
<pre data-article="article">
{
"title": "글 제목",
"summary": "글 요약 내용",
"path": "주소 경로",
"author": "작성자",
"thumbnailURL": "썸네일 주소",
"category": "카테고리 이름",
"categoryPath": "카테고리 경로",
"date": "발행 일자",
"dateTime": "발행 일시"
}
</pre>
<!-- 글 본문 -->
<div data-article="content"></div>
</div>
<!-- 댓글 -->
<div data-tistory-react-app="Comment"></div>
<div id="pagination">
<a id="prev-page" class="no-more-prev">이전 페이지</a>
<a href="/?page=1" class="page"><span class="selected">1</span></a>
<a href="/?page=2" class="page"><span class>2</span></a>
<a id="next-page" href="/?page=2" class>다음 페이지</a>
</div>
</div>
</div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>