1、配置導(dǎo)航
//進(jìn)入對(duì)應(yīng)主題的配置文件
//如:blog/themes/next/_config.yml
#找回menu配置項(xiàng)(按照自己的需求添加或修改)
menu:
home: / #首頁(yè)
archives: /archives #歸檔頁(yè)
#sitemap: /sitemap.xml
#commonweal: /404.html
2、標(biāo)簽頁(yè)
//生成標(biāo)簽頁(yè)
hexo new page tags
//此時(shí)blog/source/目錄下會(huì)生成 tags/index.md
//配置index.md
---
title: Tagcloud
date: 2017-01-11 15:23:30
type: "tags"
---
//添加標(biāo)簽頁(yè)導(dǎo)航
vim blog/themes/next/_config.yml
#找到menu配置項(xiàng)(按照添加tags)
menu:
home: / #首頁(yè)
archives: /archives #歸檔頁(yè)
tags: tags #標(biāo)簽頁(yè)
#sitemap: /sitemap.xml
#commonweal: /404.html
PS:文章添加標(biāo)簽如下:
---
title: Hexo+Github搭建個(gè)人Blog
date: 2017-01-11 15:40:26
tags: [Hexo,Github,Blog] #只有1個(gè)標(biāo)簽可用(tags: Hexo)
---
3呻率、404頁(yè)
cd blog/source/
//將準(zhǔn)備好的404.html頁(yè)面放入此目錄
# 404.html
<!DOCTYPE HTML>
<html>
<head>
<title>404 - Flycorn's Blog</title>
<meta name="description" content="404錯(cuò)誤,頁(yè)面不存在京闰!">
<meta http-equiv="content-type" content="text/html;charset=utf-8;"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="robots" content="all" />
<meta name="robots" content="index,follow"/>
</head>
<body>
<script type="text/javascript" src="http://www.qq.com/404/search_children.js" charset="utf-8" homepageurl="/" homepagename="回到Blog"></script>
</body>
</html>
4、分類頁(yè)
//生成分類頁(yè)
hexo new page categories
//此時(shí)blog/source/目錄下會(huì)生成 categories/index.md
//配置index.md
---
title: 分類
date: 2017-01-18 12:04:11
type: categories
---
//添加分類頁(yè)導(dǎo)航
vim blog/themes/next/_config.yml
#找到menu配置項(xiàng)(按照添加categories)
menu:
home: /
categories: /categories
about: /about
archives: /archives
tags: /tags
#sitemap: /sitemap.xml
#commonweal: /404.html
PS:文章添加分類如下:
---
title: Hexo+Github搭建個(gè)人Blog
date: 2017-01-11 15:40:26
tags: [Hexo,Github,Blog] #只有1個(gè)標(biāo)簽可用(tags: Hexo)
categories: 學(xué)習(xí)筆記
---
5甩苛、多說(shuō)評(píng)論模塊
以next主題為例蹂楣!
1、注冊(cè)[多說(shuō)](http://duoshuo.com/)
2讯蒲、登錄后在首頁(yè)選擇 “我要安裝”捐迫。
3、創(chuàng)建站點(diǎn)爱葵,填寫表單。多說(shuō)域名 這一欄填寫的即是你的 duoshuo_shortname
4反浓、創(chuàng)建站點(diǎn)完成后在 站點(diǎn)配置文件 中新增 duoshuo_shortname 字段萌丈,值設(shè)置成上一步中的值(如:flycorn)。
6雷则、友情鏈接
以next主題為例辆雾!
//編輯主題配置
vim blog/themes/next/_config.yml
# 找到 social 選項(xiàng),配置外鏈
social:
GitHub: https://github.com/flycorn
簡(jiǎn)書(shū): http://www.reibang.com/u/d3b9df1ce6d9
#配置外鏈圖標(biāo)
social_icons:
enable: true
# Icon Mappings.
# KeyMapsToSocalItemKey: NameOfTheIconFromFontAwesome
GitHub: github
Twitter: twitter
Weibo: weibo
7月劈、Rss訂閱模塊
以next主題為例度迂!
1、安裝插件
cd blog
npm install hexo-generator-feed
2猜揪、編輯站點(diǎn)配置
vim _config.yml
# 配置RSS
feed:
#feed 類型 (atom/rss2)
type: atom
#rss 路徑
path: atom.xml
#在 rss 中最多生成的文章數(shù)(0顯示所有)
limit: 0
以上配置完惭墓,需執(zhí)行以下:
#清除緩存
hexo clean
#生成靜態(tài)頁(yè)
hexo generate
#發(fā)布到github
hexo deploy