-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hexo2.html
1248 lines (660 loc) · 40.4 KB
/
Hexo2.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
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
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head hexo-theme='https://volantis.js.org/#2.1.2'>
<meta charset="utf-8">
<!-- SEO相关 -->
<!-- 渲染优化 -->
<meta name="renderer" content="webkit">
<meta name="force-rendering" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="HandheldFriendly" content="True" >
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- 页面元数据 -->
<title>利用Hexo和GitHub搭建一个静态博客 - CRainyDay</title>
<meta name="keywords" content="GitHub,Hexo">
<meta name="description" content="没有服务器也可以哦
用github pages与Hexo搭建免费的个人博客">
<!-- feed -->
<!-- import meta -->
<!-- link -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fancyapps/[email protected]/dist/jquery.fancybox.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/waves.min.css">
<link rel="shortcut icon" type='image/x-icon' href="https://cdn.jsdelivr.net/gh/crainyday/blog@master/favicon.ico">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/APlayer.min.css">
<!-- import link -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/crainyday/blog@master/css/style.css">
<script>
function setLoadingBarProgress(num) {
document.getElementById('loading-bar').style.width=num+"%";
}
</script>
<!-- ba -->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?bf368df5385d5be3472f3155e4cdb303";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body>
<div id="loading-bar-wrapper">
<div id="loading-bar"></div>
</div>
<header class="l_header shadow floatable blur">
<div class='wrapper'>
<div class='nav-sub container--flex'>
<a class="logo flat-box"></a>
<ul class='switcher h-list'>
<li><a class="s-comment flat-btn fas fa-comments fa-fw" target="_self" href='javascript:void(0)'></a></li>
<li><a class="s-toc flat-btn fas fa-list fa-fw" target="_self" href='javascript:void(0)'></a></li>
</ul>
</div>
<div class="nav-main container container--flex">
<a class="logo flat-box" target="_self" href='/'>
<i class='fas fa-home'></i>
CRainyDay
</a>
<div class='menu navigation'>
<ul class='h-list'>
<li>
<a class="flat-box" href=/categories/
id="categories"
>
<i class='fas fa-folder-open fa-fw'></i>
分类
</a>
</li>
<li>
<a class="flat-box" href=/archives/
id="archives"
>
<i class='fas fa-archive fa-fw'></i>
归档
</a>
</li>
<li>
<a class="flat-box" href=/tags/
id="tags"
>
<i class='fas fa-tags fa-fw'></i>
标签
</a>
</li>
<li>
<a class="flat-box" href=/friends/
id="friends"
>
<i class='fas fa-link fa-fw'></i>
友链
</a>
</li>
<li>
<a class="flat-box"
>
<i class='fas fa-ellipsis-v fa-fw'></i>
更多
</a>
<ul class="submenu">
<li>
<a class="flat-box" href=/about/music.html
id="aboutmusic.html"
>
<i class='fas fa-music fa-fw'></i>
往后余生
</a>
</li>
<hr>
<li>
<a class="flat-box" href=/bbs/
id="bbs"
>
<i class='fas fa-comment-alt fa-fw'></i>
留言
</a>
</li>
<hr>
<li>
<a class="flat-box" href=/about/
id="about"
>
<i class='fas fa-info-circle fa-fw'></i>
关于
</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="m_search">
<form name="searchform" class="form u-search-form">
<i class="icon fas fa-search fa-fw"></i>
<input type="text" class="input u-search-input" placeholder="搜索" />
</form>
</div>
<ul class='switcher h-list'>
<li><a class="s-search flat-btn fas fa-search fa-fw" target="_self" href='javascript:void(0)'></a></li>
<li><a class="s-menu flat-btn fas fa-bars fa-fw" target="_self" href='javascript:void(0)'></a></li>
</ul>
</div>
</div>
</header>
<ul class="menu-phone navigation white-box">
<li>
<a class="flat-box" href=/
id="home"
>
<i class='fas fa-home fa-fw'></i>
博客
</a>
</li>
<li>
<a class="flat-box" href=/archives/
id="archives"
>
<i class='fas fa-archive fa-fw'></i>
归档
</a>
</li>
<li>
<a class="flat-box" href=/categories/
id="categories"
>
<i class='fas fa-folder-open fa-fw'></i>
分类
</a>
</li>
<li>
<a class="flat-box" href=/friends/
id="friends"
>
<i class='fas fa-link fa-fw'></i>
友链
</a>
</li>
<li>
<a class="flat-box" href=/bbs/
id="bbs"
>
<i class='fas fa-comment-alt fa-fw'></i>
留言
</a>
</li>
<li>
<a class="flat-box" href=/about/
id="about"
>
<i class='fas fa-info-circle fa-fw'></i>
关于
</a>
</li>
</ul>
<script>setLoadingBarProgress(40);</script>
<div class="l_body nocover">
<div class='body-wrapper'>
<div class='l_main'>
<article id="post" class="post white-box shadow floatable article-type-post" itemscope itemprop="blogPost">
<section class='meta'>
<a title='利用Hexo和GitHub搭建一个静态博客' href='/Hexo2.html'><img class='thumbnail' src='https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/more/more03.png'></a>
<div class="meta" id="header-meta">
<h1 class="title">
<a href="/Hexo2.html">
利用Hexo和GitHub搭建一个静态博客
</a>
</h1>
<div class='new-meta-box'>
<div class='new-meta-item author'>
<a href="https://crainyday.gitee.io" rel="nofollow">
<img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/crainyday/blog@master/avatar.png">
<p>crainyday</p>
</a>
</div>
<div class='new-meta-item category'>
<a href='/categories/Hexo/' rel="nofollow">
<i class="fas fa-folder-open" aria-hidden="true"></i>
<p>Hexo</p>
</a>
</div>
<div class="new-meta-item date">
<a class='notlink'>
<i class="fas fa-edit" aria-hidden="true"></i>
<p>发布于:2019年3月16日</p>
</a>
</div>
<div class="new-meta-item wordcount">
<a class='notlink'>
<i class="fas fa-keyboard" aria-hidden="true"></i>
<p>字数:756字</p>
</a>
</div>
<div class="new-meta-item readtime">
<a class='notlink'>
<i class="fas fa-hourglass-half" aria-hidden="true"></i>
<p>时长:2分钟</p>
</a>
</div>
</div>
<hr>
</div>
</section>
<section class="article typo">
<div class="article-entry" itemprop="articleBody">
<p>没有服务器也可以哦</p>
<p>用github pages与Hexo搭建免费的个人博客</p>
<a id="more"></a>
<p>之前讲过了利用gitee搭建静态博客, 现在说一下利用GitHub搭建博客</p>
<h2 id="1-gitee与GitHub比较">1.gitee与GitHub比较</h2>
<blockquote>
<p>gitee是国内的仓库, 访问速度会比GitHub快点, 也比GitHub稳定一点. 但都可以利用CDN来加速访问, 之后会提到如何利用CDN加速.</p>
<p>GitHub可以使用自己的域名, 自定义自己的博客url, 这项服务是免费的. gitee也可以, 但是这项服务需要收费.</p>
</blockquote>
<h2 id="2-前期准备">2.前期准备</h2>
<ul>
<li>有一个<a href="https://github.com" target="_blank" rel="noopener">github</a>账号, 没有就先去注册一个</li>
<li>本地安装<a href="https://nodejs.org/en/download/" target="_blank" rel="noopener">node.js</a>, <a href="NodeJS.html">配置教程</a></li>
<li>本地安装hexo,安装完NodeJS,用npm全局安装hexo,命令:npm install hexo-cli -g</li>
<li>本地安装<a href="https://git-scm.com/downloads" target="_blank" rel="noopener">git for windows</a></li>
</ul>
<h2 id="3-创建Github仓库-开启pages服务">3.创建Github仓库, 开启pages服务</h2>
<blockquote>
<p>点击右上角的加号, 再点击 New repository 创建仓库,创建时先选上创建一个 README,方便测试; 之后进入仓库; 点击 setting,向下滚动滚轮找到Github Pages,在Source下面选择 master branch 开启服务.如图:</p>
</blockquote>
<p><img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/github.png" alt="github"></p>
<p><img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/github02.png" alt="github02"></p>
<p><img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/github03.png" alt="github03"></p>
<h2 id="4-初始化博客并上传">4.初始化博客并上传</h2>
<h3 id="①新建空目录">①新建空目录</h3>
<p>如图:</p>
<p><img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/github04.png" alt="github04"></p>
<h3 id="②安装插件">②安装插件</h3>
<p>打开命令行, 依次执行下列命令(路径改为你自己的). 执行完hexo s后, 访问http://localhost:4000 便是本地博客.</p>
<figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br><span class="line">10</span><br><span class="line">11</span><br><span class="line">12</span><br></pre></td><td class="code"><pre><span class="line">f:</span><br><span class="line">cd test</span><br><span class="line">npm install hexo-cli -g #之前没安装hexo的执行此命令</span><br><span class="line">hexo init</span><br><span class="line">npm install hexo-server --save</span><br><span class="line">npm install hexo-deployer-git --save</span><br><span class="line"><span class="meta">#</span><span class="bash">清理项目&&生成项目文件&&本地运行项目 hexo clean && hexo g && hexo s</span></span><br><span class="line">hexo clean</span><br><span class="line">hexo g</span><br><span class="line">hexo s</span><br><span class="line"><span class="meta">#</span><span class="bash">修改完配置信息,再 hexo d 上传到远程仓库</span></span><br><span class="line">hexo d</span><br></pre></td></tr></table></figure>
<h3 id="③配置全局-config-yml文件">③配置全局_config.yml文件</h3>
<figure class="highlight yaml"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br><span class="line">10</span><br><span class="line">11</span><br><span class="line">12</span><br><span class="line">13</span><br></pre></td><td class="code"><pre><span class="line"><span class="attr">title:</span> <span class="string">CRainyDay's</span> <span class="string">Blog</span></span><br><span class="line"><span class="attr">author:</span> <span class="string">CRainyDay</span></span><br><span class="line"><span class="attr">language:</span> <span class="string">zh-CN</span></span><br><span class="line"><span class="comment">#url</span></span><br><span class="line"><span class="attr">url:</span> <span class="attr">https://crainyday.github.io/test</span> <span class="comment">#这里填写GitHub Pages生成的url</span></span><br><span class="line"><span class="attr">root:</span> <span class="string">/test</span> <span class="comment">#博客根目录,若是url为:https://crainyday.github.io,即一个二级域名,root: /</span></span><br><span class="line"><span class="attr">theme:</span> <span class="string">landscape</span> <span class="comment">#网站应用的主题名字,可以换为你喜欢的主题</span></span><br><span class="line"></span><br><span class="line"><span class="comment">#与hexo d相关的配置</span></span><br><span class="line"><span class="attr">deploy:</span></span><br><span class="line"><span class="attr"> type:</span> <span class="string">git</span></span><br><span class="line"><span class="attr"> repo:</span> <span class="attr">https://github.com/用户名/仓库名.git</span> <span class="comment">#你的GitHub仓库地址</span></span><br><span class="line"><span class="attr"> branch:</span> <span class="string">master</span></span><br></pre></td></tr></table></figure>
<blockquote>
<p>这里是一些<a href="https://hexo.io/themes/" target="_blank" rel="noopener">Hexo 主题</a>,你可以选择一个自己喜欢的主题。下载后放在 themes 目录下即可。</p>
<p>有关其他的主题配置,请看各主题的 README 文档。</p>
</blockquote>
<h3 id="④上传到GitHub">④上传到GitHub</h3>
<p>接着上述命令执行hexo d命令. 第一次执行该命令, 期间第一次上传时,需要输入GitHub的账号密码. 上传之后, 更新一下Pages等一会访问给出的url, 便可以进入你的博客.</p>
<h2 id="5-自定义博客url">5.自定义博客url</h2>
<h3 id="①创建CNAME文件">①创建CNAME文件</h3>
<p>在本地博客根目录的source目录下, 新建CNAME文件(无后缀名). 内容为你的二级域名或其他域名</p>
<p><img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/github05.png" alt="github05"></p>
<h3 id="②解析域名">②解析域名</h3>
<p>选择CNAME解析, 添加二级域名, 记录值为GitHub Pages提供的. 其实就是 “<a href="http://xn--6qqv7i14ofosyrb.github.io" target="_blank" rel="noopener">你的用户名.github.io</a>”</p>
<p><img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/github07.png" alt="github07"></p>
<h3 id="③修改全局-config-yml文件">③修改全局_config.yml文件</h3>
<p>只需修改博客的url和网站根目录即可.</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">url: http://test.rainyday.top</span><br><span class="line">root: /</span><br></pre></td></tr></table></figure>
<h3 id="④更新GitHub-Pages">④更新GitHub Pages</h3>
<p><img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/github06.png" alt="github06"></p>
<br>
<section class="widget copyright desktop mobile">
<div class='content'>
<blockquote>
<p>博客内容遵循 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 协议</p>
<p>本文永久链接是:<a href=https://crainyday.gitee.io/Hexo2.html>https://crainyday.gitee.io/Hexo2.html</a></p>
</blockquote>
</div>
</section>
<section class="widget qrcode desktop mobile">
<div class='content article-entry'>
<fancybox><img src='https://cdn.jsdelivr.net/gh/crainyday/blog@master/alipay.png'
height='64px'
></fancybox>
<fancybox><img src='https://cdn.jsdelivr.net/gh/crainyday/blog@master/wechat.png'
height='64px'
></fancybox>
</div>
</section>
</div>
<section class='meta' id="footer-meta">
<div class='new-meta-box'>
<div class="new-meta-item date" itemprop="dateUpdated" datetime="2021-02-24T23:13:08+08:00">
<a class='notlink'>
<i class="fas fa-save" aria-hidden="true"></i>
<p>更新于:2021年2月24日</p>
</a>
</div>
<div class="new-meta-item meta-tags"><a class="tag" href="/tags/GitHub/" rel="nofollow"><i class="fas fa-hashtag" aria-hidden="true"></i><p>GitHub</p></a></div> <div class="new-meta-item meta-tags"><a class="tag" href="/tags/Hexo/" rel="nofollow"><i class="fas fa-hashtag" aria-hidden="true"></i><p>Hexo</p></a></div>
<div class="new-meta-item wordcount">
<a class='notlink'>
<i class="fas fa-keyboard" aria-hidden="true"></i>
<p>字数:756字</p>
</a>
</div>
<div class="new-meta-item readtime">
<a class='notlink'>
<i class="fas fa-hourglass-half" aria-hidden="true"></i>
<p>时长:2分钟</p>
</a>
</div>
<div class="new-meta-item share -mob-share-list">
<div class="-mob-share-list share-body">
<a class="-mob-share-qq" title="" rel="external nofollow noopener noreferrer"
href="http://connect.qq.com/widget/shareqq/index.html?url=https://crainyday.gitee.io/Hexo2.html&title=利用Hexo和GitHub搭建一个静态博客 - CRainyDay&pics=https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/more/more03.png&summary=没有服务器也可以哦
用github pages与Hexo搭建免费的个人博客"
>
<img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/xaoxuu/cdn-assets/logo/128/qq.png">
</a>
<a class="-mob-share-qzone" title="" rel="external nofollow noopener noreferrer"
href="https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=https://crainyday.gitee.io/Hexo2.html&title=利用Hexo和GitHub搭建一个静态博客 - CRainyDay&pics=https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/more/more03.png&summary=没有服务器也可以哦
用github pages与Hexo搭建免费的个人博客"
>
<img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/xaoxuu/cdn-assets/logo/128/qzone.png">
</a>
<a class="-mob-share-weibo" title="" rel="external nofollow noopener noreferrer"
href="http://service.weibo.com/share/share.php?url=https://crainyday.gitee.io/Hexo2.html&title=利用Hexo和GitHub搭建一个静态博客 - CRainyDay&pics=https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/more/more03.png&summary=没有服务器也可以哦
用github pages与Hexo搭建免费的个人博客"
>
<img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/xaoxuu/cdn-assets/logo/128/weibo.png">
</a>
<div class='hoverbox'>
<a><img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/xaoxuu/cdn-assets/logo/128/wechat.png"></a>
<div class='target'>
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPgAAAD4CAAAAADkunTXAAACRklEQVR42u3cS27DMAwFQN//0u2+QGD+CjvUaFfEUTjKhuUTcv0cui5wcHBwcPBF8Ku4Pm785/W79909H309Wi84ODg4OPhGeLgBCMLvoN2DrNYLDg4ODg6+GR5tIO6g3QOKwtP1goODg4ODg6cPItpodAcd4ODg4ODg4PMNTHYwUf18cHBwcHDwk+HpAX0TmK3jNUkKODg4ODj4i+DlC3MP/f34zUZwcHBwcPAXwLsr28BMDTDK9YKDg4ODgy+CVxuE6qAgu+94feDg4ODg4AfBqwOCqYOY/iLAwcHBwcE3wrMNxB0gO5joBgrlQQQ4ODg4OPgCeDY4qA4YygVPfUHg4ODg4OCL4N2Govv81IWAdKAADg4ODg6+CF79wG5h2cBgLFAABwcHBwdfAO8G8dkLAtXgYeyiADg4ODg4+EJ4NUCYgpUHC9l9wcHBwcHBF8GrQf9T0H8LFMDBwcHBwb8QXi14GnA1V7ROcHBwcHDwE+BTQUF2kDF1AaHcwICDg4ODgy+GdxuY7MFU90snKeDg4ODg4Ivg0YOZurjXHUxEDwwcHBwcHHwTfOof/+wBZffpBhHg4ODg4OAb4d0gPhoUjDUgzUADHBwcHBx8I7wavGcL6+5XDSjAwcHBwcFPgFcbiC6kGyyEDwocHBwcHBy8/cM31YanOvAABwcHBwcHHxjoB5/rBh4fGyJwcHBwcPDF8GygMHXxLvr+9sADHBwcHBx8IbzaGKQbiODgIXvA5UABHBwcHBz8i+GnLXBwcHBw8AXrF1ipAz23g4VPAAAAAElFTkSuQmCC">
</div>
</div>
</div>
</div>
</div>
</section>
<div class="prev-next">
<a class='prev' href='/hide-code.html'>
<p class='title'><i class="fas fa-chevron-left" aria-hidden="true"></i>Hexo为主题添加代码隐藏功能</p>
<p class='content'>写博客有时候需要添加的代码真的很多, 而我们又不想让它显示在网页上.
添加一个代码隐藏功能吧!
首先, 你要明白不论添加一些什么功能, 无非是添加一些js插件实现.
1.自定义内置标签
...</p>
</a>
<a class='next' href='/VPN.html'>
<p class='title'>VPS和shadowsocks搭建VPN<i class="fas fa-chevron-right" aria-hidden="true"></i></p>
<p class='content'>想不想要自己动手搭建一个VPN呢?
在这里, 用VPS和shadowsocks搭建的 VPN , 手机端也能用
1.前期准备
购买一个国外的VPS, 建议CentOS7系统
安装XShell...</p>
</a>
</div>
</section>
</article>
<section class="widget related_posts shadow floatable desktop mobile">
<header>
<i class="fas fa-bookmark fa-fw" aria-hidden="true"></i><span class='name'>相关文章</span>
</header>
<div class="content">
<ul class="popular-posts"><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_04.html" title="安装Gitlab" rel="bookmark">安装Gitlab</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_03.html" title="Eclipse中使用Git" rel="bookmark">Eclipse中使用Git</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_02.html" title="Git的常用命令" rel="bookmark">Git的常用命令</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_01.html" title="版本控制及Git简介" rel="bookmark">版本控制及Git简介</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Hexo.html" title="利用Hexo和Gitee搭建一个静态博客" rel="bookmark">利用Hexo和Gitee搭建一个静态博客</a></h3></div></li></ul>
</div>
</section>
<!-- 显示推荐文章和评论 -->
<article class="post white-box comments shadow floatable">
<section class="article typo">
<p ct><i class='fas fa-comments'></i> 评论</p>
<section id="comments">
<div id="valine_container" class="valine_thread">
<i class="fas fa-spinner fa-spin fa-fw"></i>
</div>
</section>
</section>
</article>
<!-- 根据页面mathjax变量决定是否加载MathJax数学公式js -->
<script>
window.subData = {
title: '利用Hexo和GitHub搭建一个静态博客',
tools: true
}
</script>
</div>
<aside class='l_side'>
<section class="widget related_posts shadow floatable desktop mobile">
<header>
<i class="fas fa-bookmark fa-fw" aria-hidden="true"></i><span class='name'>相关文章</span>
</header>
<div class="content">
<ul class="popular-posts"><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_04.html" title="安装Gitlab" rel="bookmark">安装Gitlab</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_03.html" title="Eclipse中使用Git" rel="bookmark">Eclipse中使用Git</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_02.html" title="Git的常用命令" rel="bookmark">Git的常用命令</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_01.html" title="版本控制及Git简介" rel="bookmark">版本控制及Git简介</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Hexo.html" title="利用Hexo和Gitee搭建一个静态博客" rel="bookmark">利用Hexo和Gitee搭建一个静态博客</a></h3></div></li></ul>
</div>
</section>
<section class="widget grid shadow floatable desktop mobile">
<header>
<i class="fas fa-map-signs fa-fw" aria-hidden="true"></i><span class='name'>实用文档</span>
</header>
<div class='content'>
<div class="grid navigation fixed">
<a class="flat-box" title="/maven_05.html" href="/maven_05.html"
id="maven_05.html">
<i class="fas fa-file fa-fw" aria-hidden="true"></i>
Maven工程
</a>
<a class="flat-box" title="/Flask.html" href="/Flask.html"
id="Flask.html">
<i class="fas fa-file fa-fw" aria-hidden="true"></i>
Flask应用
</a>
<a class="flat-box" title="/Hexo.html" href="/Hexo.html"
id="Hexo.html">
<i class="fas fa-file fa-fw" aria-hidden="true"></i>
Gitee搭站
</a>
<a class="flat-box" title="/Ubuntu_006.html" href="/Ubuntu_006.html"
id="Ubuntu_006.html">
<i class="fas fa-file fa-fw" aria-hidden="true"></i>
v2ray
</a>
</div>
</div>
</section>
<section class="widget toc-wrapper shadow floatable desktop mobile">
<header>
<i class="fas fa-list fa-fw" aria-hidden="true"></i><span class='name'>本文目录</span>
</header>
<div class='content'>
<ol class="toc"><li class="toc-item toc-level-2"><a class="toc-link" href="#1-gitee与GitHub比较"><span class="toc-text">1.gitee与GitHub比较</span></a></li><li class="toc-item toc-level-2"><a class="toc-link" href="#2-前期准备"><span class="toc-text">2.前期准备</span></a></li><li class="toc-item toc-level-2"><a class="toc-link" href="#3-创建Github仓库-开启pages服务"><span class="toc-text">3.创建Github仓库, 开启pages服务</span></a></li><li class="toc-item toc-level-2"><a class="toc-link" href="#4-初始化博客并上传"><span class="toc-text">4.初始化博客并上传</span></a><ol class="toc-child"><li class="toc-item toc-level-3"><a class="toc-link" href="#①新建空目录"><span class="toc-text">①新建空目录</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#②安装插件"><span class="toc-text">②安装插件</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#③配置全局-config-yml文件"><span class="toc-text">③配置全局_config.yml文件</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#④上传到GitHub"><span class="toc-text">④上传到GitHub</span></a></li></ol></li><li class="toc-item toc-level-2"><a class="toc-link" href="#5-自定义博客url"><span class="toc-text">5.自定义博客url</span></a><ol class="toc-child"><li class="toc-item toc-level-3"><a class="toc-link" href="#①创建CNAME文件"><span class="toc-text">①创建CNAME文件</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#②解析域名"><span class="toc-text">②解析域名</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#③修改全局-config-yml文件"><span class="toc-text">③修改全局_config.yml文件</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#④更新GitHub-Pages"><span class="toc-text">④更新GitHub Pages</span></a></li></ol></li></ol>
</div>
</section>
</aside>
<footer class="clearfix ">
<br><br>
<div class="aplayer-container">
<meting-js
theme='#1BCDFC'
autoplay='false'
volume='0.7'
loop='all'
order='list'
fixed='true'
list-max-height='340px'
server='netease'
type='playlist'
id='2709912289'
list-folded='true'>
</meting-js>
</div>
<br>
<div class="social-wrapper">
<a href="mailto:[email protected]"
class="social fas fa-envelope flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer">
</a>
<a href="https://github.com/crainyday"
class="social fab fa-github flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer">
</a>
<a href="https://music.163.com/#/user/home?id=1794783182"
class="social fas fa-headphones-alt flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer">
</a>
</div>
<div><p>博客内容遵循 <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh" target="_blank" rel="noopener">署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 协议</a></p>
</div>