hexo 下的分类和表签无法显示,解决方法
打开页面的时候标签和分类总是提示Cannot GET /tags/这个错误
新建一个页面
$ hexo new page "tags"
设置新建页面的类型
(\source\tags\index.md中查找设置)1
2
3
4
5
6---
title: tags
date: 2017-11-12 22:06:40
tags: tags #文章的标签
---
注意:冒号后面都需要添加一个空格
配置主题文件
(主题_config.yml中设置)1
2
3menu:
home: / || home
tags: /tags/ || tags #确保已经打开
重新生成生成
1 | hexo generate |
1 | 如果上述都设置都没有问题还是不能生成页面 |
github上建立仓库注意点
设置仓库名字的时候 ghshuo.github.io ,其中ghshuo 必须要是你的用户名,其它名称无效
将来你的网站访问地址就是 http://ghshuo.github.io
绑定自己的域名
1 | 记录类型选A或CNAME,A记录的记录值就是ip地址, |
hexo文章中添加图片
每次要把图片先上传到七牛的服务器然后再使用有点麻烦,下面的方法在本地加载
修改主配置
主页配置中 _config.yml 中有 post_asset_folder: true 如果是flase 改成true
hexo目录中执行
npm install https://github.com/CodeFalling/hexo-asset-image –save
生成新的文章
1 | $ hexo new [hexo-pit] <title> 建一篇新文章hexo-pit |