0%

hexo设置博客主题、使用分类和标签等更多功能

前言

hexo还有很多功能,我们今后一起来慢慢研究。

设置博客主题

使用git将‘next’主题的代码下载到’/themes’目录

1
git clone https://github.com/theme-next/hexo-theme-next themes/next

将根目录下的_config.yml(称为站点配置文件),修改主题(注意冒号后都要有空格):

1
2
3
4
# Extensions
## Plugins: https://hexo.io/plugins/
## Themes: https://hexo.io/themes/
theme: next #主题改为next

将/themes/next/下的_config.yml(称为主题配置文件)中,将选中的主题前的‘#’删除

1
2
3
4
5
# Schemes
#scheme: Muse
#scheme: Mist
#scheme: Pisces
scheme: Gemini #选择的主题

输入命令重新部署,让主题生效

1
2
3
hexo clean
hexo g
hexo d

使用分类和标签功能

修改根目录下的_config.yml_文件,添加如下内容:

1
2
3
4
5
6
7
8
# 分类排序
category_generator:
per_page: 10
order_by: -date
# 标签排序
tag_generator:
per_page: 10
order_by: -date

在.md文件的头部添加分类和标签信息

1
2
3
4
5
6
7
8
---
title: 使用hexo设置博客主题、使用分类和标签功能
categories:
- hexo
tags:
- 博客
- 部署
---

输入命令重新部署

1
2
3
hexo clean
hexo g
hexo d