-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
902 lines (621 loc) · 33.5 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
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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
<!DOCTYPE html>
<html lang=zh>
<head>
<meta charset="utf-8">
<title>RinneのIsland</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="description" content="description">
<meta property="og:type" content="website">
<meta property="og:title" content="RinneのIsland">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="RinneのIsland">
<meta property="og:description" content="description">
<meta property="og:locale" content="zh-CN">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="RinneのIsland">
<meta name="twitter:description" content="description">
<link rel="icon" href="/css/images/favicon.png" />
<link rel="stylesheet" href="/libs/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="/libs/open-sans/styles.css">
<link rel="stylesheet" href="/libs/source-code-pro/styles.css">
<link rel="stylesheet" href="/css/style.css">
<script src="/libs/jquery/2.1.3/jquery.min.js"></script>
<link rel="stylesheet" href="/libs/lightgallery/css/lightgallery.min.css">
<link rel="stylesheet" href="/libs/justified-gallery/justifiedGallery.min.css">
</head>
<body>
<div id="container">
<header id="header">
<div id="header-main" class="header-inner">
<div class="outer">
<a href="/" id="logo">
<i class="logo"></i>
<span class="site-title">RinneのIsland</span>
</a>
<nav id="main-nav">
<a class="main-nav-link" href="/">首页</a>
<a class="main-nav-link" href="/archive">文章归档</a>
<a class="main-nav-link" href="/categories">类别</a>
<a class="main-nav-link" href="/tags">标签</a>
<a class="main-nav-link" href="/about">关于</a>
</nav>
<nav id="sub-nav">
<div class="profile" id="profile-nav">
<a id="profile-anchor" href="javascript:;">
<img class="avatar" src="/css/images/avatar.png" />
<i class="fa fa-caret-down"></i>
</a>
</div>
</nav>
<div id="search-form-wrap">
<form class="search-form">
<input type="text" class="ins-search-input search-form-input" placeholder="搜索" />
<button type="submit" class="search-form-submit"></button>
</form>
<div class="ins-search">
<div class="ins-search-mask"></div>
<div class="ins-search-container">
<div class="ins-input-wrapper">
<input type="text" class="ins-search-input" placeholder="想要查找什么..." />
<span class="ins-close ins-selectable"><i class="fa fa-times-circle"></i></span>
</div>
<div class="ins-section-wrapper">
<div class="ins-section-container"></div>
</div>
</div>
</div>
<script>
(function (window) {
var INSIGHT_CONFIG = {
TRANSLATION: {
POSTS: '文章',
PAGES: '页面',
CATEGORIES: '分类',
TAGS: '标签',
UNTITLED: '(未命名)',
},
ROOT_URL: '/',
CONTENT_URL: '/content.json',
};
window.INSIGHT_CONFIG = INSIGHT_CONFIG;
})(window);
</script>
<script src="/js/insight.js"></script>
</div>
</div>
</div>
<div id="main-nav-mobile" class="header-sub header-inner">
<table class="menu outer">
<tr>
<td><a class="main-nav-link" href="/">首页</a></td>
<td><a class="main-nav-link" href="/archive">文章归档</a></td>
<td><a class="main-nav-link" href="/categories">类别</a></td>
<td><a class="main-nav-link" href="/tags">标签</a></td>
<td><a class="main-nav-link" href="/about">关于</a></td>
<td>
<div class="search-form">
<input type="text" class="ins-search-input search-form-input" placeholder="搜索" />
</div>
</td>
</tr>
</table>
</div>
</header>
<div class="outer">
<aside id="profile">
<div class="inner profile-inner">
<div class="base-info profile-block">
<img id="avatar" src="/css/images/avatar.png" />
<h2 id="name">Minaseko</h2>
<h3 id="title">地球人</h3>
<span id="location"><i class="fa fa-map-marker"></i>Everywhere</span>
<a id="follow" target="_blank" href="https://github.com/Kinmosei/">关注我</a>
</div>
<div class="article-info profile-block">
<div class="article-info-block">
4
<span>文章</span>
</div>
<div class="article-info-block">
1
<span>标签</span>
</div>
</div>
<div class="profile-block social-links">
<table>
<tr>
<td>
<a href="https://github.com/Kinmosei/" target="_blank" title="github" class=tooltip>
<i class="fa fa-github"></i>
</a>
</td>
<td>
<a href="/" target="_blank" title="twitter" class=tooltip>
<i class="fa fa-twitter"></i>
</a>
</td>
</tr>
</table>
</div>
</div>
</aside>
<section id="main">
<article id="post-2017-12-10" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2017/12/10/2017-12-10/">2017年末反思</a>
</h1>
<div class="article-meta">
<div class="article-date">
<i class="fa fa-calendar"></i>
<a href="/2017/12/10/2017-12-10/">
<time datetime="2017-12-10T01:36:20.000Z" itemprop="datePublished">2017-12-10</time>
</a>
</div>
<div class="article-category">
<i class="fa fa-folder"></i>
<a class="article-category-link" href="/categories/Daily-life/">日常</a>
</div>
</div>
</header>
<div class="article-entry" itemprop="articleBody">
<p><p>先把文件给设置好XD</p></p>
<p class="article-more-link">
<a href="/2017/12/10/2017-12-10/#more">查看更多</a>
</p>
</div>
<footer class="article-footer">
<div class="share-container">
</div>
<a data-url="http://yoursite.com/2017/12/10/2017-12-10/" data-id="cjb06m8r20002agob2ooysgm5" class="article-share-link"><i class="fa fa-share"></i>分享到</a>
<script>
(function ($) {
// Prevent duplicate binding
if (typeof(__SHARE_BUTTON_BINDED__) === 'undefined' || !__SHARE_BUTTON_BINDED__) {
__SHARE_BUTTON_BINDED__ = true;
} else {
return;
}
$('body').on('click', function() {
$('.article-share-box.on').removeClass('on');
}).on('click', '.article-share-link', function(e) {
e.stopPropagation();
var $this = $(this),
url = $this.attr('data-url'),
encodedUrl = encodeURIComponent(url),
id = 'article-share-box-' + $this.attr('data-id'),
offset = $this.offset(),
box;
if ($('#' + id).length) {
box = $('#' + id);
if (box.hasClass('on')){
box.removeClass('on');
return;
}
} else {
var html = [
'<div id="' + id + '" class="article-share-box">',
'<input class="article-share-input" value="' + url + '">',
'<div class="article-share-links">',
'<a href="https://twitter.com/intent/tweet?url=' + encodedUrl + '" class="fa fa-twitter article-share-twitter" target="_blank" title="Twitter"></a>',
'<a href="https://www.facebook.com/sharer.php?u=' + encodedUrl + '" class="fa fa-facebook article-share-facebook" target="_blank" title="Facebook"></a>',
'<a href="http://pinterest.com/pin/create/button/?url=' + encodedUrl + '" class="fa fa-pinterest article-share-pinterest" target="_blank" title="Pinterest"></a>',
'<a href="https://plus.google.com/share?url=' + encodedUrl + '" class="fa fa-google article-share-google" target="_blank" title="Google+"></a>',
'</div>',
'</div>'
].join('');
box = $(html);
$('body').append(box);
}
$('.article-share-box.on').hide();
box.css({
top: offset.top + 25,
left: offset.left
}).addClass('on');
}).on('click', '.article-share-box', function (e) {
e.stopPropagation();
}).on('click', '.article-share-box-input', function () {
$(this).select();
}).on('click', '.article-share-box-link', function (e) {
e.preventDefault();
e.stopPropagation();
window.open(this.href, 'article-share-box-window-' + Date.now(), 'width=500,height=450');
});
})(jQuery);
</script>
<a href="http://yoursite.com/2017/12/10/2017-12-10/#comments" class="article-comment-link disqus-comment-count" data-disqus-url="http://yoursite.com/2017/12/10/2017-12-10/">评论</a>
</footer>
</div>
</article>
<article id="post-2017-10-8" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2017/10/08/2017-10-8/">国庆开学前</a>
</h1>
<div class="article-meta">
<div class="article-date">
<i class="fa fa-calendar"></i>
<a href="/2017/10/08/2017-10-8/">
<time datetime="2017-10-08T05:45:42.000Z" itemprop="datePublished">2017-10-08</time>
</a>
</div>
<div class="article-category">
<i class="fa fa-folder"></i>
<a class="article-category-link" href="/categories/Daily-life/">日常</a>
</div>
</div>
</header>
<div class="article-entry" itemprop="articleBody">
<p><p>关于这个假期到底做了什么<br></p>
<p class="article-more-link">
<a href="/2017/10/08/2017-10-8/#more">查看更多</a>
</p>
</div>
<footer class="article-footer">
<div class="share-container">
</div>
<a data-url="http://yoursite.com/2017/10/08/2017-10-8/" data-id="cjb06m8rk0009agobx6w08phs" class="article-share-link"><i class="fa fa-share"></i>分享到</a>
<script>
(function ($) {
// Prevent duplicate binding
if (typeof(__SHARE_BUTTON_BINDED__) === 'undefined' || !__SHARE_BUTTON_BINDED__) {
__SHARE_BUTTON_BINDED__ = true;
} else {
return;
}
$('body').on('click', function() {
$('.article-share-box.on').removeClass('on');
}).on('click', '.article-share-link', function(e) {
e.stopPropagation();
var $this = $(this),
url = $this.attr('data-url'),
encodedUrl = encodeURIComponent(url),
id = 'article-share-box-' + $this.attr('data-id'),
offset = $this.offset(),
box;
if ($('#' + id).length) {
box = $('#' + id);
if (box.hasClass('on')){
box.removeClass('on');
return;
}
} else {
var html = [
'<div id="' + id + '" class="article-share-box">',
'<input class="article-share-input" value="' + url + '">',
'<div class="article-share-links">',
'<a href="https://twitter.com/intent/tweet?url=' + encodedUrl + '" class="fa fa-twitter article-share-twitter" target="_blank" title="Twitter"></a>',
'<a href="https://www.facebook.com/sharer.php?u=' + encodedUrl + '" class="fa fa-facebook article-share-facebook" target="_blank" title="Facebook"></a>',
'<a href="http://pinterest.com/pin/create/button/?url=' + encodedUrl + '" class="fa fa-pinterest article-share-pinterest" target="_blank" title="Pinterest"></a>',
'<a href="https://plus.google.com/share?url=' + encodedUrl + '" class="fa fa-google article-share-google" target="_blank" title="Google+"></a>',
'</div>',
'</div>'
].join('');
box = $(html);
$('body').append(box);
}
$('.article-share-box.on').hide();
box.css({
top: offset.top + 25,
left: offset.left
}).addClass('on');
}).on('click', '.article-share-box', function (e) {
e.stopPropagation();
}).on('click', '.article-share-box-input', function () {
$(this).select();
}).on('click', '.article-share-box-link', function (e) {
e.preventDefault();
e.stopPropagation();
window.open(this.href, 'article-share-box-window-' + Date.now(), 'width=500,height=450');
});
})(jQuery);
</script>
<a href="http://yoursite.com/2017/10/08/2017-10-8/#comments" class="article-comment-link disqus-comment-count" data-disqus-url="http://yoursite.com/2017/10/08/2017-10-8/">评论</a>
</footer>
</div>
</article>
<article id="post-2017-9-3-15-07-14" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2017/09/03/2017-9-3-15-07-14/">高二开学前</a>
</h1>
<div class="article-meta">
<div class="article-date">
<i class="fa fa-calendar"></i>
<a href="/2017/09/03/2017-9-3-15-07-14/">
<time datetime="2017-09-03T06:07:26.000Z" itemprop="datePublished">2017-09-03</time>
</a>
</div>
<div class="article-category">
<i class="fa fa-folder"></i>
<a class="article-category-link" href="/categories/Daily-life/">日常</a>
</div>
</div>
</header>
<div class="article-entry" itemprop="articleBody">
<p><p> 不得不承认,这个假期,我又没写完作业。<br></p>
<p class="article-more-link">
<a href="/2017/09/03/2017-9-3-15-07-14/#more">查看更多</a>
</p>
</div>
<footer class="article-footer">
<div class="share-container">
</div>
<a data-url="http://yoursite.com/2017/09/03/2017-9-3-15-07-14/" data-id="cjb06m8rg0007agob1j1855v5" class="article-share-link"><i class="fa fa-share"></i>分享到</a>
<script>
(function ($) {
// Prevent duplicate binding
if (typeof(__SHARE_BUTTON_BINDED__) === 'undefined' || !__SHARE_BUTTON_BINDED__) {
__SHARE_BUTTON_BINDED__ = true;
} else {
return;
}
$('body').on('click', function() {
$('.article-share-box.on').removeClass('on');
}).on('click', '.article-share-link', function(e) {
e.stopPropagation();
var $this = $(this),
url = $this.attr('data-url'),
encodedUrl = encodeURIComponent(url),
id = 'article-share-box-' + $this.attr('data-id'),
offset = $this.offset(),
box;
if ($('#' + id).length) {
box = $('#' + id);
if (box.hasClass('on')){
box.removeClass('on');
return;
}
} else {
var html = [
'<div id="' + id + '" class="article-share-box">',
'<input class="article-share-input" value="' + url + '">',
'<div class="article-share-links">',
'<a href="https://twitter.com/intent/tweet?url=' + encodedUrl + '" class="fa fa-twitter article-share-twitter" target="_blank" title="Twitter"></a>',
'<a href="https://www.facebook.com/sharer.php?u=' + encodedUrl + '" class="fa fa-facebook article-share-facebook" target="_blank" title="Facebook"></a>',
'<a href="http://pinterest.com/pin/create/button/?url=' + encodedUrl + '" class="fa fa-pinterest article-share-pinterest" target="_blank" title="Pinterest"></a>',
'<a href="https://plus.google.com/share?url=' + encodedUrl + '" class="fa fa-google article-share-google" target="_blank" title="Google+"></a>',
'</div>',
'</div>'
].join('');
box = $(html);
$('body').append(box);
}
$('.article-share-box.on').hide();
box.css({
top: offset.top + 25,
left: offset.left
}).addClass('on');
}).on('click', '.article-share-box', function (e) {
e.stopPropagation();
}).on('click', '.article-share-box-input', function () {
$(this).select();
}).on('click', '.article-share-box-link', function (e) {
e.preventDefault();
e.stopPropagation();
window.open(this.href, 'article-share-box-window-' + Date.now(), 'width=500,height=450');
});
})(jQuery);
</script>
<a href="http://yoursite.com/2017/09/03/2017-9-3-15-07-14/#comments" class="article-comment-link disqus-comment-count" data-disqus-url="http://yoursite.com/2017/09/03/2017-9-3-15-07-14/">评论</a>
</footer>
</div>
</article>
<article id="post-ISLAND" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2017/08/07/ISLAND/">ISLAND</a>
</h1>
<div class="article-meta">
<div class="article-date">
<i class="fa fa-calendar"></i>
<a href="/2017/08/07/ISLAND/">
<time datetime="2017-08-07T10:44:21.210Z" itemprop="datePublished">2017-08-07</time>
</a>
</div>
<div class="article-category">
<i class="fa fa-folder"></i>
<a class="article-category-link" href="/categories/ACGN/">二维空间</a>
</div>
<div class="article-tag">
<i class="fa fa-tag"></i>
<a class="tag-link" href="/tags/Galgame/">Galgame</a>
</div>
</div>
</header>
<div class="article-entry" itemprop="articleBody">
<p> 大约是去年八月份,我把这部作品也堆到了硬盘里,但也就是上个月中才打开玩了一会,当时感觉还不错。<br> 八月初,ISLAND出汉化了。当时也不想复习,就花了三到四天推完,小小谈谈感受。</p>
<p> Karen线 第一条线路<br> 叛逆少女逆袭,一年内考上国内顶尖大学?<br> 印象比较深的是途中学习的一段,主角教夏莲生物,恰好是之前学到的内容,玩游戏还能复习XD<br> 夏莲最初离家出走,是想去本土,就像她的母亲一样。<br> 之后遇上主角,主角承诺说带她去本土,但是在实施过程中,选择的是独自开船出海这样一个行为,最后主角反倒是被拘捕了一年。<br> 再然后呢?一年间,夏莲选择了好好学习,最后成功考上了本土一所很好的大学,我当时想,真鸡儿厉害。而主角出狱后,也去到了本土,算是圆满结局。<br> 很有意思的一条线路,主要引出了生物相关这一概念,也是剧情走向最普通的一条线路。</p>
<p> SARA线 第二条线路<br> 中二少女的最后,居然是普通的结婚生子?<br> 沙罗是真的中二呀,带歪了我好久……<br> 这条线路出现了很多后文的伏笔,结局也算是普普通通吧。<br> 这一次是把时空旅行,还有游戏中贯穿的煤纹病给引了出来。</p>
<p> Rinne线 第三条线路<br> 第一女主角最后居然沉入大海?<br> 真的,险恶啊……<br> 中间一段虽然特别甜,但是后面就让人体验很差了,当凛音沉入大海,后边发现尸体,傻了我都。<br> 主角也因此使用了冷冻装置,目的是带回时光机,拯救凛音。<br> 这条线路完全就是承上启下了,收回了一些伏笔,进入隐藏章节。</p>
<p> Winter篇 第四条线路<br> 古代?未来?末世下的争斗?<br> 嗯……主角来到了公园200XX年,一觉差不多睡了两万年,开局遇到了超可爱的Rinne把主角给带回了家。<br> 不过当地已经处于废土状态了,外边是冰河期,人类只是在庇护所里苟延残喘。<br> 之后又因为一系列误会,故事完全走向了悲剧,尤其是Sara和Karen的GG。<br> 最后结果是什么?主角坐着时光机回到过去了?我真不是很清楚,游戏就是这一部分很模糊。</p>
<p> Midsummer篇 第五条线路<br> 啥?凛音是女儿,玖音是Rinne!<br> 真的完全没想到啊,还是在游戏里的一个推理环节才发现的,这里也将决定游戏最后的结局。<br> 最后虽然已经进行了许多伏笔的回收,但是故事本身还有存在争议,或者说有悖论的地方。<br> 这方面作者没有进行说明,最后我也不得而知,也不打算再深究了。</p>
<p> 总的来说,确实是值得一玩的作品。途中也确实挺开心的。</p>
</div>
<footer class="article-footer">
<div class="share-container">
</div>
<a data-url="http://yoursite.com/2017/08/07/ISLAND/" data-id="cjb06m8r80004agobxbzzf4cr" class="article-share-link"><i class="fa fa-share"></i>分享到</a>
<script>
(function ($) {
// Prevent duplicate binding
if (typeof(__SHARE_BUTTON_BINDED__) === 'undefined' || !__SHARE_BUTTON_BINDED__) {
__SHARE_BUTTON_BINDED__ = true;
} else {
return;
}
$('body').on('click', function() {
$('.article-share-box.on').removeClass('on');
}).on('click', '.article-share-link', function(e) {
e.stopPropagation();
var $this = $(this),
url = $this.attr('data-url'),
encodedUrl = encodeURIComponent(url),
id = 'article-share-box-' + $this.attr('data-id'),
offset = $this.offset(),
box;
if ($('#' + id).length) {
box = $('#' + id);
if (box.hasClass('on')){
box.removeClass('on');
return;
}
} else {
var html = [
'<div id="' + id + '" class="article-share-box">',
'<input class="article-share-input" value="' + url + '">',
'<div class="article-share-links">',
'<a href="https://twitter.com/intent/tweet?url=' + encodedUrl + '" class="fa fa-twitter article-share-twitter" target="_blank" title="Twitter"></a>',
'<a href="https://www.facebook.com/sharer.php?u=' + encodedUrl + '" class="fa fa-facebook article-share-facebook" target="_blank" title="Facebook"></a>',
'<a href="http://pinterest.com/pin/create/button/?url=' + encodedUrl + '" class="fa fa-pinterest article-share-pinterest" target="_blank" title="Pinterest"></a>',
'<a href="https://plus.google.com/share?url=' + encodedUrl + '" class="fa fa-google article-share-google" target="_blank" title="Google+"></a>',
'</div>',
'</div>'
].join('');
box = $(html);
$('body').append(box);
}
$('.article-share-box.on').hide();
box.css({
top: offset.top + 25,
left: offset.left
}).addClass('on');
}).on('click', '.article-share-box', function (e) {
e.stopPropagation();
}).on('click', '.article-share-box-input', function () {
$(this).select();
}).on('click', '.article-share-box-link', function (e) {
e.preventDefault();
e.stopPropagation();
window.open(this.href, 'article-share-box-window-' + Date.now(), 'width=500,height=450');
});
})(jQuery);
</script>
<a href="http://yoursite.com/2017/08/07/ISLAND/#comments" class="article-comment-link disqus-comment-count" data-disqus-url="http://yoursite.com/2017/08/07/ISLAND/">评论</a>
</footer>
</div>
</article>
</section>
<aside id="sidebar">
<div class="widget-wrap">
<h3 class="widget-title">最新文章</h3>
<div class="widget">
<ul id="recent-post" class="">
<li>
<div class="item-thumbnail">
<a href="/2017/12/10/2017-12-10/" class="thumbnail">
<span class="thumbnail-image thumbnail-none"></span>
</a>
</div>
<div class="item-inner">
<p class="item-category"><a class="article-category-link" href="/categories/Daily-life/">日常</a></p>
<p class="item-title"><a href="/2017/12/10/2017-12-10/" class="title">2017年末反思</a></p>
<p class="item-date"><time datetime="2017-12-10T01:36:20.000Z" itemprop="datePublished">2017-12-10</time></p>
</div>
</li>
<li>
<div class="item-thumbnail">
<a href="/2017/10/08/2017-10-8/" class="thumbnail">
<span class="thumbnail-image thumbnail-none"></span>
</a>
</div>
<div class="item-inner">
<p class="item-category"><a class="article-category-link" href="/categories/Daily-life/">日常</a></p>
<p class="item-title"><a href="/2017/10/08/2017-10-8/" class="title">国庆开学前</a></p>
<p class="item-date"><time datetime="2017-10-08T05:45:42.000Z" itemprop="datePublished">2017-10-08</time></p>
</div>
</li>
<li>
<div class="item-thumbnail">
<a href="/2017/09/03/2017-9-3-15-07-14/" class="thumbnail">
<span class="thumbnail-image thumbnail-none"></span>
</a>
</div>
<div class="item-inner">
<p class="item-category"><a class="article-category-link" href="/categories/Daily-life/">日常</a></p>
<p class="item-title"><a href="/2017/09/03/2017-9-3-15-07-14/" class="title">高二开学前</a></p>
<p class="item-date"><time datetime="2017-09-03T06:07:26.000Z" itemprop="datePublished">2017-09-03</time></p>
</div>
</li>
<li>
<div class="item-thumbnail">
<a href="/2017/08/07/ISLAND/" class="thumbnail">
<span class="thumbnail-image thumbnail-none"></span>
</a>
</div>
<div class="item-inner">
<p class="item-category"><a class="article-category-link" href="/categories/ACGN/">二维空间</a></p>
<p class="item-title"><a href="/2017/08/07/ISLAND/" class="title">ISLAND</a></p>
<p class="item-date"><time datetime="2017-08-07T10:44:21.210Z" itemprop="datePublished">2017-08-07</time></p>
</div>
</li>
</ul>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">分类</h3>
<div class="widget">
<ul class="category-list"><li class="category-list-item"><a class="category-list-link" href="/categories/ACGN/">二维空间</a><span class="category-list-count">1</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/Daily-life/">日常</a><span class="category-list-count">3</span></li></ul>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">标签云</h3>
<div class="widget tagcloud">
<a href="/tags/Galgame/" style="font-size: 10px;">Galgame</a>
</div>
</div>
<div class="widget-wrap widget-list">
<h3 class="widget-title">链接</h3>
<div class="widget">
<ul>
</ul>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">归档</h3>
<div class="widget">
<ul class="archive-list"><li class="archive-list-item"><a class="archive-list-link" href="/archive/2017/12/">十二月 2017</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archive/2017/10/">十月 2017</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archive/2017/09/">九月 2017</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archive/2017/08/">八月 2017</a><span class="archive-list-count">1</span></li></ul>
</div>
</div>
<div id="toTop" class="fa fa-angle-up"></div>
</aside>
</div>
<footer id="footer">
<div class="outer">
<div id="footer-info" class="inner">
© 2017 Minaseko<br>
驱动于 <a href="http://hexo.io/" target="_blank">Hexo</a> 框架 | 使用 <a href="http://github.com/ppoffice">PPOffice</a> 制作的主题 <a href="https://github.com/ppoffice/hexo-theme-icarus">Icarus</a> | 托管于 <a href="https://pages.github.com/">GitHub Pages</a><br>
@がんばれ!コレカラプロジェクト/カディ工房
</div>
</div>
</footer>
<script>
var disqus_config = function () {
this.page.identifier = '';
};
(function() {
var d = document, s = d.createElement('script');
s.src = '//' + 'hexo-theme-icarus' + '.disqus.com/count.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<script src="/libs/lightgallery/js/lightgallery.min.js"></script>
<script src="/libs/lightgallery/js/lg-thumbnail.min.js"></script>
<script src="/libs/lightgallery/js/lg-pager.min.js"></script>
<script src="/libs/lightgallery/js/lg-autoplay.min.js"></script>
<script src="/libs/lightgallery/js/lg-fullscreen.min.js"></script>
<script src="/libs/lightgallery/js/lg-zoom.min.js"></script>
<script src="/libs/lightgallery/js/lg-hash.min.js"></script>
<script src="/libs/lightgallery/js/lg-share.min.js"></script>
<script src="/libs/lightgallery/js/lg-video.min.js"></script>
<script src="/libs/justified-gallery/jquery.justifiedGallery.min.js"></script>
<!-- Custom Scripts -->
<script src="/js/main.js"></script>
</div>
</body>
</html>