-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
984 lines (846 loc) · 34.2 KB
/
Copy pathindex.html
File metadata and controls
984 lines (846 loc) · 34.2 KB
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
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2">
<meta name="baidu-site-verification" content="code-yFZH9zt0Kz" />
<meta name="google-site-verification" content="VnpNqfG2qeYLXeWXqUuWCumEEQ4T6V5s5fWw2nON-yU" />
<meta name="theme-color" content="#FFF">
<link rel="apple-touch-icon" sizes="180x180" href="https://fastly.jsdelivr.net/gh/echoflove/echoflove.github.io@latest/images/apple-touch-icon.png">
<link rel="icon" type="image/ico" sizes="32x32" href="https://fastly.jsdelivr.net/gh/echoflove/echoflove.github.io@latest/images/favicon.ico">
<meta http-equiv="Cache-Control" content="no-transform">
<meta http-equiv="Cache-Control" content="no-siteapp">
<link rel="alternate" type="application/rss+xml" title="最是光阴化浮沫" href="https://echoflove.github.io/rss.xml" />
<link rel="alternate" type="application/atom+xml" title="最是光阴化浮沫" href="https://echoflove.github.io/atom.xml" />
<link rel="alternate" type="application/json" title="最是光阴化浮沫" href="https://echoflove.github.io/feed.json" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Mulish:300,300italic,400,400italic,700,700italic%7CFredericka%20the%20Great:300,300italic,400,400italic,700,700italic%7CNoto%20Serif%20JP:300,300italic,400,400italic,700,700italic%7CNoto%20Serif%20SC:300,300italic,400,400italic,700,700italic%7CInconsolata:300,300italic,400,400italic,700,700italic&display=swap&subset=latin,latin-ext">
<link rel="stylesheet" href="https://fastly.jsdelivr.net/gh/echoflove/echoflove.github.io@latest/css/app.css?v=0.2.5">
<link rel="canonical" href="https://echoflove.github.io/">
<title>Echo of Love = 最是光阴化浮沫 = 蹉跎错,消磨过</title>
<meta name="generator" content="Hexo 6.1.0"></head>
<body itemscope itemtype="http://schema.org/WebPage">
<div id="loading">
<div class="cat">
<div class="body"></div>
<div class="head">
<div class="face"></div>
</div>
<div class="foot">
<div class="tummy-end"></div>
<div class="bottom"></div>
<div class="legs left"></div>
<div class="legs right"></div>
</div>
<div class="paw">
<div class="hands left"></div>
<div class="hands right"></div>
</div>
</div>
</div>
<div id="container">
<header id="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="inner">
<div id="brand">
<div class="pjax">
<a href="/" class="logo" rel="start"><p class="artboard">Echo of Love</p>
<h1 itemprop="name headline" class="title">最是光阴化浮沫</h1>
</a>
<p class="meta" itemprop="description">= 蹉跎错,消磨过 =</p>
</div>
</div>
<nav id="nav">
<div class="inner">
<div class="toggle">
<div class="lines" aria-label="Toggle navigation bar">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</div>
</div>
<ul class="menu">
<li class="item title"><a href="/" rel="start">Echo of Love</a></li>
</ul>
<ul class="right">
<li class="item theme">
<i class="ic i-sun"></i>
</li>
<li class="item search">
<i class="ic i-search"></i>
</li>
</ul>
</div>
</nav>
</div>
<div id="imgs" class="pjax">
<ul>
<li class="item" data-background-image="https://tva4.sinaimg.cn/large/6833939bly1gipeyonbf9j20zk0m8e81.jpg"></li>
<li class="item" data-background-image="https://tva4.sinaimg.cn/large/6833939bly1gipeu7txpzj20zk0m81kx.jpg"></li>
<li class="item" data-background-image="https://tva4.sinaimg.cn/large/6833939bly1giciuja1j1j20zk0m8kjl.jpg"></li>
<li class="item" data-background-image="https://tva4.sinaimg.cn/large/6833939bly1gipet8c1a2j20zk0m8kct.jpg"></li>
<li class="item" data-background-image="https://tva4.sinaimg.cn/large/6833939bly1gipevuctzzj20zk0m84qp.jpg"></li>
<li class="item" data-background-image="https://tva4.sinaimg.cn/large/6833939bly1gicm0n457cj20zk0m8e81.jpg"></li>
</ul>
</div>
</header>
<div id="waves">
<svg class="waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 28" preserveAspectRatio="none" shape-rendering="auto">
<defs>
<path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z" />
</defs>
<g class="parallax">
<use xlink:href="#gentle-wave" x="48" y="0" />
<use xlink:href="#gentle-wave" x="48" y="3" />
<use xlink:href="#gentle-wave" x="48" y="5" />
<use xlink:href="#gentle-wave" x="48" y="7" />
</g>
</svg>
</div>
<main>
<div class="inner">
<div id="main" class="pjax">
<div class="index wrap">
<h2 class="divider">Sticky Posts</h2>
<div class="segments sticky">
<article class="item">
<div class="cover">
<a href="/posts/b015e126/" itemprop="url" title="博客索引"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1giclhtuo6nj20zk0m8ttm.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-05-14 16:17:54">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-05-14T16:17:54+08:00">2022-05-14</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>642</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>1 mins.</span>
</span>
</div>
<h3><a href="/posts/b015e126/" itemprop="url" title="博客索引">博客索引</a></h3>
<div class="excerpt">
缓慢施工中~
嗨~!首先欢迎来到我的博客!
会看到这个页面的陌生人 / 朋友们大概会是这么几种:
真的陌生人!
我滴好朋友!我滴好朋友们中最可能的大概是阿雪吧毕竟有些不可告人的事也有她一份!
最多的还是我自己啦~
如果我们素不相识而在网络中这样擦肩而过,欢迎你自由地浏览我的博客~当然里面现在很少东西啦哈哈我也不知道我会填多少,因为我其实热衷的就是折腾样式 wwww 写东西对我太难啦!
如果是阿雪哟或者其他被我喊来的朋友们~我也应该跟你们讲清楚怎么用啦!
这个博客并没有什么明确的定位,可能会有很少的一点经验记录 /...
</div>
<a href="/posts/b015e126/" itemprop="url" title="博客索引" class="btn">more...</a>
</div>
</article>
</div>
<h2 class="divider">Categories</h2>
<div class="cards">
<section class="item">
<div class="cover" data-background-image="https://fastly.jsdelivr.net/gh/echoflove/echoflove.github.io@latest/Paradise-Lost/Tales-of-Erin/cover.jpg">
<h2 class="title">樱花雨下的邂逅</h2>
<span>失乐园</span>
</div>
<div class="info">
<div class="ribbon"><a href="/categories/Paradise-Lost/Tales-of-Erin/" itemprop="url" title="樱花雨下的邂逅">樱花雨下的邂逅</a></div>
<div class="inner">
<ul class="posts">
<li><a title="黑鸦" href="/posts/37117/">黑鸦</a></li>
</ul>
<div class="meta footer">
<span>
<a href="/categories/Paradise-Lost/" itemprop="url" title="失乐园"><i class="ic i-flag"></i>失乐园</a>
</span>
<span>
<i class="ic i-file"></i>1 posts in total
</span>
</div>
<a href="/categories/Paradise-Lost/Tales-of-Erin/" itemprop="url" title="樱花雨下的邂逅" class="btn">more...</a>
</div>
</div>
</section>
</div>
<h2 class="divider">Post List</h2>
<div class="segments posts">
<article class="item">
<div class="cover">
<a href="/posts/b092db50/" itemprop="url" title="Cpt.1.1 古希腊时期的音乐"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1gipevuctzzj20zk0m84qp.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-07-02 21:33:42">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-07-02T21:33:42+08:00">2022-07-02</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>666</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>1 mins.</span>
</span>
</div>
<h3><a href="/posts/b092db50/" itemprop="url" title="Cpt.1.1 古希腊时期的音乐">Cpt.1.1 古希腊时期的音乐</a></h3>
<div class="excerpt">
西方音乐的源头,可以追溯到古希腊时代。
# 古希腊
百科解释:古希腊 (Greece)
时间:公元前 800 年 - 公元前 146 年
地理:地中海一带,克里特岛
古希腊是指古代巴尔干半岛南部、爱琴海诸岛和小亚细亚沿岸的总称。公元前 3000 - 公元前 2000 年代的爱琴文化(或称克里特 - 迈锡尼文化)是其历史的先导。公元前 12 - 公元前 8 世纪为荷马时代。公元前 8 - 前 4 世纪为古典时代。公元前 338 年后,沦于马其顿统治之下。公元前 4 世纪后半叶亚历山大东征后为希腊化时代。公元前 146...
</div>
<div class="meta footer">
<span>
<a href="/categories/Normal/%E8%A5%BF%E6%96%B9%E9%9F%B3%E4%B9%90%E5%8F%B2/" itemprop="url" title="西方音乐史"><i class="ic i-flag"></i>西方音乐史</a>
</span>
</div>
<a href="/posts/b092db50/" itemprop="url" title="Cpt.1.1 古希腊时期的音乐" class="btn">more...</a>
</div>
</article>
<article class="item">
<div class="cover">
<a href="/posts/43ef11d6/" itemprop="url" title="Cpt.0 目录"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1giclgrvbd6j20zk0m8qv5.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-07-02 21:29:42">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-07-02T21:29:42+08:00">2022-07-02</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>104</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>1 mins.</span>
</span>
</div>
<h3><a href="/posts/43ef11d6/" itemprop="url" title="Cpt.0 目录">Cpt.0 目录</a></h3>
<div class="excerpt">
# 使用教材
名称:《西方音乐简史》
编著:余志刚
出版社:高等教育出版社
ISBN:7040186268
版次: 2006 年 11 月第 1 版
# 目录
古希腊古罗马时期的音乐
中世纪音乐
文艺复兴时期
巴洛克时期
古典主义时期
浪漫主义时期
</div>
<div class="meta footer">
<span>
<a href="/categories/Normal/%E8%A5%BF%E6%96%B9%E9%9F%B3%E4%B9%90%E5%8F%B2/" itemprop="url" title="西方音乐史"><i class="ic i-flag"></i>西方音乐史</a>
</span>
</div>
<a href="/posts/43ef11d6/" itemprop="url" title="Cpt.0 目录" class="btn">more...</a>
</div>
</article>
<article class="item">
<div class="cover">
<a href="/posts/c82078be/" itemprop="url" title="2022-夏-语文"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1gipeuv80yoj20zk0m8kjl.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-06-21 18:41:17">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-06-21T18:41:17+08:00">2022-06-21</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>307</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>1 mins.</span>
</span>
</div>
<h3><a href="/posts/c82078be/" itemprop="url" title="2022-夏-语文">2022-夏-语文</a></h3>
<div class="excerpt">
# 一、选择题
古希腊神话中音乐之神有。
阿波罗和缪斯
雅典娜和阿瑞斯
阿波罗和波塞冬
普罗米修斯和赫拉克勒斯
古希腊悲剧的素材多来自于。
古希腊神话和史诗
古希腊民间歌舞
狄俄尼索斯的故事
山羊之歌
被恩格斯成为” 中世纪最后一位诗人,同时又是新时代最初一位诗人。”...
</div>
<a href="/posts/c82078be/" itemprop="url" title="2022-夏-语文" class="btn">more...</a>
</div>
</article>
<article class="item">
<div class="cover">
<a href="/posts/390f703b/" itemprop="url" title="2022-夏-英语"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1gipew28b65j20zk0m8hdt.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-06-20 20:20:22">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-06-20T20:20:22+08:00">2022-06-20</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>3.8k</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>3 mins.</span>
</span>
</div>
<h3><a href="/posts/390f703b/" itemprop="url" title="2022-夏-英语">2022-夏-英语</a></h3>
<div class="excerpt">
# 汉译英
Translate the paragraph into English.
# B2U2
每年数以百万计的高校毕业生涌向就业市场,就业压力巨大。但另一方面互联网浪潮正将年轻人推向时代的最前沿。在中国,已有不少年轻人选择借助网络优势实现自己的创业梦想。相比于传统的创业模式,借助互联网创业成本较少、门槛较低,只要肯努力、有技术,好点子就很有可能变为真金子。因此,互联网对于创业青年来说意味着更多机遇。
Reference:
University graduates face high employment pressure with millions of them swarming...
</div>
<a href="/posts/390f703b/" itemprop="url" title="2022-夏-英语" class="btn">more...</a>
</div>
</article>
<article class="item">
<div class="cover">
<a href="/posts/ce9bfa53/" itemprop="url" title="压抑到极致的爆发"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1gicis081o9j20zk0m8dmr.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-06-04 14:31:00">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-06-04T14:31:00+08:00">2022-06-04</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>735</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>1 mins.</span>
</span>
</div>
<h3><a href="/posts/ce9bfa53/" itemprop="url" title="压抑到极致的爆发">压抑到极致的爆发</a></h3>
<div class="excerpt">
有东西被加密了, 请输入密码查看.
</div>
<div class="meta footer">
<span>
<a href="/categories/%E6%BD%87%E6%B9%98%E4%B8%8B%E7%9A%84%E5%B9%BB%E5%BD%B1/%E5%8E%8B%E6%8A%91%E5%88%B0%E6%9E%81%E8%87%B4%E7%9A%84%E7%88%86%E5%8F%91/" itemprop="url" title="压抑到极致的爆发"><i class="ic i-flag"></i>压抑到极致的爆发</a>
</span>
</div>
<a href="/posts/ce9bfa53/" itemprop="url" title="压抑到极致的爆发" class="btn">more...</a>
</div>
</article>
<article class="item">
<div class="cover">
<a href="/posts/43c11bf4/" itemprop="url" title="Mac的蓝牙鼠标自动断开的一种解决方案"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1gipet4bz0yj20zk0m8e81.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-05-17 21:49:03">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-05-17T21:49:03+08:00">2022-05-17</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>272</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>1 mins.</span>
</span>
</div>
<h3><a href="/posts/43c11bf4/" itemprop="url" title="Mac的蓝牙鼠标自动断开的一种解决方案">Mac的蓝牙鼠标自动断开的一种解决方案</a></h3>
<div class="excerpt">
之前的鼠标曾经落在过课室一次,由于急用,马上又买了一个。因此现在我手里有两个蓝牙鼠标,都是罗技,一个是 M337,一个是 M590。随后我就发现它们都有一个共同问题,就是经常用着用着,或是一小会儿没用再拿起来时,连接就会断掉,需要玄学摇晃 / 等待一会儿才能又连上。
也想过会不会是驱动或者没电的问题,但都排除了。在网上一找,看到了一个乍一看有点没道理但实际试验下来发现真的如此(==)的原因,所以在此记录一下。
其实很简单,就是电池的问题(真的会在设计上出这么简单的错误吗?)。拆开后盖,垫一片厚度适当的纸巾,再改回盖子,就 OK 了。内心一万头草泥马奔过~
</div>
<a href="/posts/43c11bf4/" itemprop="url" title="Mac的蓝牙鼠标自动断开的一种解决方案" class="btn">more...</a>
</div>
</article>
<article class="item">
<div class="cover">
<a href="/posts/65b21404/" itemprop="url" title="下载"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1giclx29mstj20zk0m8hdt.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-05-14 20:06:55">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-05-14T20:06:55+08:00">2022-05-14</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>52</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>1 mins.</span>
</span>
</div>
<h3><a href="/posts/65b21404/" itemprop="url" title="下载">下载</a></h3>
<div class="excerpt">
# 音乐制作 / Music production
Sibelius V2020.6 for MacOs
打谱软件西贝柳斯
</div>
<a href="/posts/65b21404/" itemprop="url" title="下载" class="btn">more...</a>
</div>
</article>
<article class="item">
<div class="cover">
<a href="/posts/44637/" itemprop="url" title="hexo标签插件使用相关"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1gipew28b65j20zk0m8hdt.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-05-13 19:56:35">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-05-13T19:56:35+08:00">2022-05-13</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>1k</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>1 mins.</span>
</span>
</div>
<h3><a href="/posts/44637/" itemprop="url" title="hexo标签插件使用相关">hexo标签插件使用相关</a></h3>
<div class="excerpt">
请留意,本篇文章基于主题Shoka编写,各个主题的文件夹结构可能有些许差异。
很有用的参考链接:Hexo 新增自定義標籤外掛
# 什么是标签插件(Tags Plugins)?
标签插件(Tag Plugins)是由 Hexo 官方推出的一项功能,可以用于在文章中快速插入特定内容。我用它来实现类似 Mediawiki 中的模板(Template)功能,也与 Wordpress 中的短代码(Short Codes)类似。
# 为什么使用标签插件?
如官方所述,由于我对博客有一定用作存放设定的 wiki 用途的需求,需要在不同的文章中重复用到相同的内容或格式。相比于...
</div>
<a href="/posts/44637/" itemprop="url" title="hexo标签插件使用相关" class="btn">more...</a>
</div>
</article>
<article class="item">
<div class="cover">
<a href="/posts/25064/" itemprop="url" title="Character / 安息 / Ansies"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1gicli3sbvtj20zk0m8x6p.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-05-04 13:56:13">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-05-04T13:56:13+08:00">2022-05-04</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>1.2k</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>1 mins.</span>
</span>
</div>
<h3><a href="/posts/25064/" itemprop="url" title="Character / 安息 / Ansies">Character / 安息 / Ansies</a></h3>
<div class="excerpt">
Character / 安息 / Ansies
# 档案
# 基本 / Basic
联络用名:安息 / Ansies标识号:001
传承级别:君主属性:☪ 暗属性
势力:凛冬-诺尔伦苏 / Ansies称号:不死の贵族
战斗适应:攻击 / 近距离
# 印象 / Impression
真正意义上,醒来见到的第一个人呢 —— 虽然是以不那么友善的方式。
# 战斗
# 天赋 / Talent
基础...
</div>
<div class="meta footer">
<span>
<a href="/categories/Paradise-Lost/Live-with-Dreams/" itemprop="url" title="深海の梦境"><i class="ic i-flag"></i>深海の梦境</a>
</span>
</div>
<a href="/posts/25064/" itemprop="url" title="Character / 安息 / Ansies" class="btn">more...</a>
</div>
</article>
<article class="item">
<div class="cover">
<a href="/posts/16107/" itemprop="url" title="Hello World"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1gicli3sbvtj20zk0m8x6p.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-05-04 11:57:59">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-05-04T11:57:59+08:00">2022-05-04</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>372</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>1 mins.</span>
</span>
</div>
<h3><a href="/posts/16107/" itemprop="url" title="Hello World">Hello World</a></h3>
<div class="excerpt">
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
# Quick Start
# Create a new post
1$ hexo new &quot;My New Post&quot;
More info: Writing
# Run...
</div>
<a href="/posts/16107/" itemprop="url" title="Hello World" class="btn">more...</a>
</div>
</article>
<article class="item">
<div class="cover">
<a href="/posts/37117/" itemprop="url" title="黑鸦"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1giclgrvbd6j20zk0m8qv5.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-05-03 22:18:41">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-05-03T22:18:41+08:00">2022-05-03</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>529</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>1 mins.</span>
</span>
</div>
<h3><a href="/posts/37117/" itemprop="url" title="黑鸦">黑鸦</a></h3>
<div class="excerpt">
黑鸦
# 背景故事
姓名:黑鸦性别:男
势力:神圣同盟种族:人类
有绅士风度的成熟男性,神圣同盟的八盟王之一。
是同盟黑暗面的象征。生于黑暗、成长于黑暗。参与过太多见不得光、但被冠以 “正义” 名号的行动,在矛盾与自责中逐渐麻木,失去了感情。
希望在黑暗中找到光,重新找回身为 “人” 的感觉。现在他所表现出来的,只是按照过去的记忆再现了感情,而并非真情的流露。
声优:森川智之画师:平
# 状态
攻击力:24409
生命值:24315
防御力:3381
暴击:10%暴击伤害...
</div>
<div class="meta footer">
<span>
<a href="/categories/Paradise-Lost/Tales-of-Erin/" itemprop="url" title="樱花雨下的邂逅"><i class="ic i-flag"></i>樱花雨下的邂逅</a>
</span>
</div>
<a href="/posts/37117/" itemprop="url" title="黑鸦" class="btn">more...</a>
</div>
</article>
<article class="item">
<div class="cover">
<a href="/posts/58225/" itemprop="url" title="birthday"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1giciryrr3rj20zk0m8nhk.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-05-03 22:10:56">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-05-03T22:10:56+08:00">2022-05-03</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>0</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>1 mins.</span>
</span>
</div>
<h3><a href="/posts/58225/" itemprop="url" title="birthday">birthday</a></h3>
<div class="excerpt">
</div>
<a href="/posts/58225/" itemprop="url" title="birthday" class="btn">more...</a>
</div>
</article>
<article class="item">
<div class="cover">
<a href="/posts/48120/" itemprop="url" title="练习题与答案"><img data-src="https://tva4.sinaimg.cn/mw690/6833939bly1gipeu1usa7j20zk0m8b29.jpg"></a>
</div>
<div class="info">
<div class="meta">
<span class="item" title="Created: 2022-05-03 22:10:56">
<span class="icon">
<i class="ic i-calendar"></i>
</span>
<time itemprop="dateCreated datePublished" datetime="2022-05-03T22:10:56+08:00">2022-05-03</time>
</span>
<span class="item" title="Symbols count in article">
<span class="icon">
<i class="ic i-pen"></i>
</span>
<span>621</span>
<span class="text">words</span>
</span>
<span class="item" title="Reading time">
<span class="icon">
<i class="ic i-clock"></i>
</span>
<span>1 mins.</span>
</span>
</div>
<h3><a href="/posts/48120/" itemprop="url" title="练习题与答案">练习题与答案</a></h3>
<div class="excerpt">
123
黑鸦
https://shoka.lostyu.me/computer-science/note/theme-shoka-doc/special/
编译时多态主要指运算符重载与函数重载,而运行时多态主要指虚函数。
有基类 SHAPE ,派生类 CIRCLE ,声明如下变量:
12SHAPE shape1,*p1;CIRCLE circle1,*q1;
下列哪些项是 “派生类对象替换基类对象”。
p1=&amp;circle1;
q1=&amp;shape1;
shape1=circle1;
circle1=shape1;
✔️ 令基类对象的指针指向派生类对象
❌...
</div>
<a href="/posts/48120/" itemprop="url" title="练习题与答案" class="btn">more...</a>
</div>
</article>
</div>
</div>
</div>
<div id="sidebar">
<div class="inner">
<div class="panels">
<div class="inner">
<div class="contents panel pjax" data-title="Contents">
</div>
<div class="related panel pjax" data-title="Related">
</div>
<div class="overview panel" data-title="Overview">
<div class="author" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="image" itemprop="image" alt="烟视"
data-src="https://fastly.jsdelivr.net/gh/echoflove/echoflove.github.io@latest/images/avatar.jpg">
<p class="name" itemprop="name">烟视</p>
<div class="description" itemprop="description">蹉跎错,消磨过</div>
</div>
<nav class="state">
<div class="item posts">
<a href="/archives/">
<span class="count">14</span>
<span class="name">posts</span>
</a>
</div>
<div class="item categories">
<a href="/categories/">
<span class="count">8</span>
<span class="name">categories</span>
</a>
</div>
<div class="item tags">
<a href="/tags/">
<span class="count">4</span>
<span class="name">tags</span>
</a>
</div>
</nav>
<div class="social">
<span class="exturl item weibo" data-url="aHR0cHM6Ly93ZWliby5jb20vNjI5ODkzNzY3Ni9wcm9maWxlP3JpZ2h0bW9kPTEmd3ZyPTYmbW9kPXBlcnNvbmluZm8maXNfYWxsPTE=" title="https://weibo.com/6298937676/profile?rightmod=1&wvr=6&mod=personinfo&is_all=1"><i class="ic i-weibo"></i></span>
<span class="exturl item Maston" data-url="aHR0cHM6Ly9lY2hvZmxvdmUuY29tL0BhZG1pbg==" title="https://echoflove.com/@admin"><i class="ic i-address-card"></i></span>
<span class="exturl item douban" data-url="aHR0cHM6Ly93d3cuZG91YmFuLmNvbS9wZW9wbGUvMjI0MjQxMDk1Lz9fZHRjYz0xJl9pPTE3MjgzMDVKZkdZa0RO" title="https://www.douban.com/people/224241095/?_dtcc=1&_i=1728305JfGYkDN"><i class="ic i-douban"></i></span>
</div>
<ul class="menu">
<li class="item">
<a href="/" rel="section"><i class="ic i-home"></i>Home</a>
</li>
<li class="item">
<a href="/about/" rel="section"><i class="ic i-user"></i>About</a>
</li>
<li class="item">
<a href="/artitalk/" rel="section"><i class="ic i-feather"></i>talk</a>
</li>
</ul>
</div>
</div>
</div>
<ul id="quick">
<li class="prev pjax">
</li>
<li class="up"><i class="ic i-arrow-up"></i></li>
<li class="down"><i class="ic i-arrow-down"></i></li>
<li class="next pjax">
</li>
<li class="percent"></li>
</ul>
</div>
</div>
<div class="dimmer"></div>
</div>
</main>
<footer id="footer">
<div class="inner">
<div class="widgets">
</div>
<div class="status">
<div class="copyright">
©
<span itemprop="copyrightYear">2022</span>
<span class="with-love">
<i class="ic i-sakura rotate"></i>
</span>
<span class="author" itemprop="copyrightHolder">烟视 @ Echo of Love</span>
</div>
<div class="count">
<span class="post-meta-item-icon">
<i class="ic i-chart-area"></i>
</span>
<span title="Symbols count total">10k words</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="ic i-coffee"></i>
</span>
<span title="Reading time total">9 mins.</span>
</div>
<div class="powered-by">
Powered by <span class="exturl" data-url="aHR0cHM6Ly9oZXhvLmlv">Hexo</span> & Theme.<span class="exturl" data-url="aHR0cHM6Ly9naXRodWIuY29tL2FtZWhpbWUvaGV4by10aGVtZS1zaG9rYQ==">Shoka</span>
</div>
</div>
<span id="busuanzi_container_site_pv" class="theme-info">
| 本站总访问量<span id="busuanzi_value_site_pv"></span>次
</span>
<span id="busuanzi_container_site_uv" class="theme-info">
| 本站访客数<span id="busuanzi_value_site_uv"></span>人次
</span>
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
</div>
</footer>
</div>
<script data-config type="text/javascript">
var LOCAL = {
path: '',
favicon: {
show: "千秋明月吹角寒,花是主人。",
hide: "百代繁华一朝都,谁非过客?"
},
search : {
placeholder: "Search for Posts",
empty: "We didn't find any results for the search: ${query}",
stats: "${hits} results found in ${time} ms"
},
valine: true,fancybox: true,
copyright: 'Copied to clipboard successfully! <br> All articles in this blog are licensed under <i class="ic i-creative-commons"></i>BY-NC-SA.',
ignores : [
function(uri) {
return uri.includes('#');
},
function(uri) {
return new RegExp(LOCAL.path+"$").test(uri);
}
]
};
</script>
<script src="https://cdn.polyfill.io/v2/polyfill.js"></script>
<script src="//fastly.jsdelivr.net/combine/npm/pace-js@1.0.2/pace.min.js,npm/pjax@0.2.8/pjax.min.js,npm/whatwg-fetch@3.4.0/dist/fetch.umd.min.js,npm/animejs@3.2.0/lib/anime.min.js,npm/algoliasearch@4/dist/algoliasearch-lite.umd.js,npm/instantsearch.js@4/dist/instantsearch.production.min.js,npm/lozad@1/dist/lozad.min.js,npm/quicklink@2/dist/quicklink.umd.js"></script>
<script src="https://fastly.jsdelivr.net/gh/echoflove/echoflove.github.io@latest/js/app.js?v=0.2.5"></script>
</body>
</html>