【持续更新】记录个人博客使用过程中的一些配置信息
一. Github Pages 配置
Github Pages 分为两类:用户主页和项目主页。
用户主页
只需创建一个名称为
{username}.github.io
的项目仓库即可,这里的username
务必于 Github 用户名相同。Github 会自动识别并将该仓库认定为用户主页仓库。项目主页
需要在对应的项目仓库中设置:
Setting -> Options -> Github Pages
Source 选项,该项目就可以通过{username}.github.io/{repo.name}
访问。
二. 使用 Hexo + Next 生成博客
基本步骤如下:
1 | 安装 Hexo |
持续集成会在后续 CI 详述。
三. 配置
站点 _config.yml
1
2
3
4# 首页文章显示设置
index_generator:
order_by: -date # 按文章创建时间倒序排列
per_page: 10 # 10 篇分页主题 _config.yml
四. 写
Archives
1
hexo new post "文章标题"
Categories
- 生成 categories 页
1
2
3hexo new page categories
添加type: "categories"到内容中
vim source/categories/index.md- 修改 scaffolds/post.md 添加 “categories:”
- 文章中添加分类
Tags
配置方式与 Categories 相同
1
2
3hexo new page tags
添加type: "tags"到内容中
vim source/tags/index.mdAbout
其他
Read more >>
<!--more-->