forked from xCss/Valine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
176 lines (156 loc) · 5.16 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
<!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="Valine,极简风,评论系统,极简风评论系统,comment system">
<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>Valine - A simple comment system based on Leancloud.</title>
<style>
* {
margin: 0 auto;
padding: 0;
box-sizing: border-box;
}
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;
}
ul,
li {
list-style: none;
}
.prolist {
padding: 10px 20px 20px 20px;
font-weight: 400;
font-size: 16px;
font-family: -apple-system, BlinkMacSystemFont, 'Mirages Custom', 'Merriweather', 'Open Sans', "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", "WenQuanYi Micro Hei", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", Helvetica, Arial, sans-serif;
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="//cdn1.lncld.net/static/js/3.0.4/av-min.js"></script>
<script src="./dist/Valine.min.js"></script>
</head>
<body>
<div class="market"></div>
<header>
<div class="container">
<a href="./" class="logo">Valine</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 class="comment"></div>
</div>
</div>
<div class="copy">
© 2017 <a href="https://github.com/xCss" target="_blank">云淡风轻</a>
</div>
<script>
var valine = new Valine();
valine.init({
//notify: true,
verify: true,
el: '.comment',
app_id: '3GiiCyXCrGbOIH3EelCfJ6yw-gzGzoHsz',
app_key: 'iuneD4hXPQImdHQSRE0aOcRF',
placeholder: 'ヾノ≧∀≦)o来啊,快活啊!'
})
</script>
<script>
if (!/^http:\/\/localhost/.test(location.href)) {
var _hmt = _hmt || [];
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?fc2301b16d1a46c7899ef2b5afb651cc";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
}
window.onload = function() {
var iframes = document.querySelectorAll('iframe');
iframes[0].setAttribute('src', 'https://ghbtns.com/github-btn.html?user=xCss&repo=valine&type=watch&count=true');
iframes[1].setAttribute('src', 'https://ghbtns.com/github-btn.html?user=xCss&type=follow&count=true');
}
</script>
</body>
</html>