Hexo更换主题(Next)

安装Next

下载主题

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

应用下载的主题

在网站配置文件_config.yml中,配置theme

1
theme: next

主题设置

选择 Scheme

1
2
3
#scheme: Muse
#scheme: Mist
scheme: Pisces

设置 中文

在网站配置文件_config.yml中,配置中文

1
language: zh-Hans

设置 菜单

在主题配置文件_config.yml中,配置菜单

1
2
3
4
5
6
7
menu:
home: / #主页
archives: /archives #归档
about: /about #关于
categories: /categories #分类
tags: /tags #标签
#commonweal: /404.html #公益

配置菜单图标

1
2
3
4
5
6
7
8
9
menu_icons:
enable: true
# Icon Mapping.
home: home
about: user
categories: th
tags: tags
archives: archive
#commonweal: heartbeat

设置 侧栏

在主题配置文件_config.yml中,配置侧栏位置

1
2
sidebar:
position: left #左边显示

设置 头像

在主题配置文件_config.yml中,配置头像

1
avatar: http://example.com/avatar.png      #图片地址

设置 作者昵称

在站点配置文件_config.yml中,配置作者昵称

1
author: '昵称'

站点描述

在站点配置文件_config.yml中,配置描述

1
description: '描述'
-------------本文结束感谢您的阅读-------------