forked from kaeyleo/jekyll-theme-H2O
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
169 lines (157 loc) · 5.77 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
---
layout: default
home-title: 欢迎来到水啊的博客
description: 天若有情天亦老 人间正道是沧桑
---
{% include header.html %}
<style>
@keyframes blink-caret { 50% { background-color: transparent; } }
</style>
<div
class="g-banner home-banner {{ site.theme-color | prepend: 'banner-theme-' }}"
data-theme="{{ site.theme-color }}"
style="{% if page.header-img %}background: url({{ page.header-img | relative_url }}) no-repeat center center; background-size: cover;{% endif %}"
>
<h2>{{ page.home-title }}</h2>
<h3 class="container"></h3>
</div>
<main class="g-container home-content">
<div class="article-list">
{% for post in paginator.posts %}
<article class="article-item">
{% if post.cover %}
<div class="post-cover">
<a class="post-link" href="{{ post.url | relative_url }}" title="{{ post.title }}"></a>
<img src="{{ post.cover | relative_url }}" href="{{ post.url | relative_url }}" alt="">
</div>
{% endif %}
<section class="post-preview">
<a class="post-link" href="{{ post.url | relative_url }}" title="{{ post.title }}"></a>
<h2 class="post-title">{{ post.title }}</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">{{ post.subtitle }}</h3>
{% endif %}
{% if post.subtitle.size==0 or post.subtitle==nil %}
<p class="post-excerpt">{{ post.excerpt | strip_html | strip_newlines | truncate: 126}}</p>
{% endif %}
</section>
<footer class="post-meta">
<div class="post-tags">
{% if post.tags.size > 0 %}
{% for tag in post.tags %}
<a href={{ "tags.html#" | append: tag | relative_url }} class="post-tag">{{ tag }}</a>
{% endfor %}
{% endif %}
</div>
<time class="post-date" datetime="{{ post.date | date:"%y-%m-%d" }}">{{ post.date | date_to_string }}</time>
</footer>
</article>
{% endfor %}
{% if paginator.total_pages > 1 %}
{% include pageNav.html %}
{% endif %}
</div>
<aside class="g-sidebar-wrapper">
<div class="g-sidebar">
<section class="author-card">
<div class="avatar">
<img src="{{ site.avatar | relative_url }}" alt="">
</div>
<div class="author-name" rel="author">{{ site.author }}</div>
<div class="bio">
<p>{{ site.bio }}</p>
</div>
{% if site.sns.size > 0 %}
<ul id="sns-links" class="sns-links">
{% for s in site.sns %}
<li>
<a href="{{ s[1] }}" target="_blank">
<i class="iconfont icon-{{ s[0] }}"></i>
</a>
</li>
{% endfor %}
</ul>
{% endif %}
</section>
{% if site.recommend-tags and site.tags.size>0 %}
<section class="tags-card">
{% for tag in site.tags %}
{% if forloop.index > site.recommend-condition-size %}
{% break %}
{% endif %}
<a href="{{ "tags.html#" | append: tag[0] | relative_url }}" class="tag">{{ tag[0]}}</a>
{% endfor %}
</section>
{% endif %}
</div>
{% if site.search %}
<div class="search-card">
<input id="search_input" type="text" placeholder="Search..." autocomplete="off">
<i class="iconfont icon-search"></i>
<div class="search_result"></div>
</div>
{% endif %}
</aside>
</main>
{% include footer.html %}
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
var s = '天若有情天亦老 人间正道是沧桑';
function getlast(obj){
var index=obj.lastIndexOf(":");
obj=obj.substring(index+1,obj.length);
// console.log(obj);
return obj;
}
function next(){
$(function(){
$.ajax({
url: 'http://www.shui.tk/fun.txt',
dataType: 'text',
success: function(data) {
m=data.split("\n").length;
i=Math.floor(Math.random() *m+1);
s=getlast(data.split("\n")[i])
}
});
});
}
</script>
<script>
var length = s.length;
var con = $('.container');
var index = 0;
var tId = null;
function start(){
con.text('');
con.append('<span></span>');
tId=setInterval(function(){
con.append(s.charAt(index));
length = s.length;
if(index++ === length){
clearInterval(tId);
index = 0;
next()
start()
}
},200);
}
start();
</script>
<link rel="stylesheet" type="text/css" href="/assets/waifu.css"/>
<div class="waifu" id="waifu">
<div class="waifu-tips" style="opacity: 1;"></div>
<canvas id="live2d" width="280" height="250" class="live2d"></canvas>
<div class="waifu-tool">
<span class="fui-home"></span>
<span class="fui-chat"></span>
<span class="fui-eye"></span>
<span class="fui-user"></span>
<span class="fui-photo"></span>
<span class="fui-info-circle"></span>
<span class="fui-cross"></span>
</div>
</div>
<script src="/assets/live2d.js"></script>
<script src="/assets/waifu-tips.js"></script>
<script type="text/javascript">initModel()</script>