Hexo常见问题
2017-07-19
Hexo常见问题
首页出现404
解决办法:
命令行执行:hexo new page
文章标题名字出现-“未命名”
文章的标题并不是 Markdown 文件的名字,而是在 Front-matter 里指定的,例如:
---
title: Hello World
date: 2013/7/13 20:46:25
tags: hexo
---
添加「标签」页面
在终端窗口下,定位到 Hexo 站点目录下。使用 hexo new page 新建一个页面,命名为 tags :
$ cd your-hexo-site
$ hexo new page tags
新建页面
设置页面类型
编辑刚新建的页面,将页面的类型设置为 tags ,主题将自动为这个页面显示标签云。页面内容如下:
title: 标签
date: 2014-12-22 12:39:04
type: "tags"
---
修改菜单
在菜单中添加链接。编辑 主题配置文件 , 添加 tags 到 menu 中,如下:
menu:
home: /
archives: /archives
tags: /tags
创建关于“我”
新建一个 about 页面:
hexo new page "about"
菜单显示 about 链接,在主题的 _configy.yml 设置中将 menu 中 about 前面的注释去掉即可。
menu:
home: /
archives: /archives
tags: /tags
about: /about
next文章折叠
在markdown文件中使用如下标签: