-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
181 lines (162 loc) · 4.88 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="keywords" content="Hitalk,极简风,评论系统,极简风评论系统,comment system" />
<meta name="description" content="Hitalk - 一款基于Leancloud的极简风评论系统" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta content="telephone=no,email=no" name="format-detection" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge,Chrome=1" />
<title>Hitalk - A simple comment system based on Leancloud.</title>
<style>
* {
margin: 0 auto;
padding: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 微软雅黑,
'helvetica neue', helvetica, ubuntu, roboto, noto, 'segoe ui', Arial, sans-serif;
}
body {
background-color: rgb(238, 238, 238);
}
header {
background: #fff;
}
a {
color: #999;
text-decoration: none;
border-bottom: 1px dotted #dedede;
}
.logo {
display: inline-block;
height: 60px;
font-size: 24px;
line-height: 60px;
color: #4285f4;
vertical-align: base-line;
}
.sub {
font-size: 12px;
color: #9c9c9c;
padding: 0 5px;
}
.market {
background-color: #4285f4;
height: 398px;
position: absolute;
top: 60px;
width: 100%;
outline: none;
display: block;
z-index: -1;
}
.container {
width: 80%;
}
.placeholder {
height: 56px;
}
@media screen and (max-width: 720px) {
header {
text-align: center;
}
.sub {
display: block;
padding-bottom: 10px;
}
.container {
width: 100%;
}
.placeholder,
.market {
display: none;
}
}
.content {
background: #fff;
padding: 10px;
}
.prolist {
padding: 10px 20px 20px 20px;
font-weight: 400;
font-size: 16px;
line-height: 1.5;
}
blockquote {
margin: 10px 0;
padding: 0 1em;
color: #6a737d;
border-left: 0.25em solid #dfe2e5;
}
#github {
padding: 20px 0;
}
.copy {
line-height: 60px;
text-align: center;
font-size: 14px;
color: #9c9c9c;
}
</style>
<script src="//cdn.jsdelivr.net/npm/leancloud-storage/dist/av-min.js"></script>
<script src="./dist/Hitalk.min.js"></script>
</head>
<body>
<div class="market"></div>
<header>
<div class="container">
<a href="./" class="logo">Hitalk</a>
<span class="sub">A simple comment system based on Leancloud.</span>
</div>
</header>
<div class="container">
<div class="placeholder"></div>
<div class="content">
<div id="github">
<iframe allowtransparency="true" frameborder="0" scrolling="0" width="98" height="20"></iframe>
<iframe allowtransparency="true" frameborder="0" scrolling="0" width="156" height="20"></iframe>
</div>
<div>
<span class="post-comments-count hitalk-comment-count" data-xid="/" itemprop="commentCount"></span>
<span
class="post-comments-count hitalk-comment-count"
data-xid="/posts/javascript/PWA/2019-02-18-progressive-web-apps-blog.html"
itemprop="commentCount"
></span>
<span
class="post-comments-count hitalk-comment-count"
data-xid="/posts/Hexo/2018-05-27-hexo-code-block.html"
itemprop="commentCount"
></span>
</div>
<!-- 评论数量 -->
<div id="comment"></div>
</div>
</div>
<div class="copy">
© 2024
<a href="https://github.com/Ihoey" target="_blank">梦魇小栈</a>
</div>
<script>
var Hitalk = new Hitalk({
el: '#comment',
appId: 'Ir6SE0GwBzFxczMqXXVpCF8d-gzGzoHsz',
appKey: 'SnlgtrRYvxJimSYDRw2GBr6H',
placeholder: 'ヾノ≧∀≦)o来啊,快活啊!',
avatar: 'monsterid',
path: '/'
})
window.onload = function () {
var iframe = document.querySelectorAll('iframe')
iframe[0].setAttribute('src', 'https://ghbtns.com/github-btn.html?user=ihoey&repo=Hitalk&type=watch&count=true')
iframe[1].setAttribute('src', 'https://ghbtns.com/github-btn.html?user=ihoey&type=follow&count=true')
}
</script>
</body>
</html>