Introdution to hexo theme - Next

安装

主题下载

1
2
3
cd <hexo_folder>
git clone git@github.com:imyhxy/hexo-theme-next.git
mv hexo-theme-next themes/next

应用主题

目录下有网站的配置文件_config.yml,使用文本编辑器更改文件内的 theme 字段为 next,注意不应使用 <tab>,而应该使用空格进行缩进。

1
theme: next

首页博文的长度

一种方法是在写文章时加入

文章会在标签处自动断开,另一种方法是设置主题的_config.yml 文件:

1
2
3
4
5
# Automatically Excerpt. Not recommend.
# Please use <!-- more --> in the post to control excerpt accurately.
auto_excerpt:
enable: true
length: 150

扩增 6 种样式标签

在扩增的标签内的 Markdown 支持度下降,建议只插入纯文本,使用方法如下

1
{% note class_name %} content {% endnote %}

所有 classname 如下:

  • default
  • primary
  • success
  • info
  • warning
  • danger

样例:

Default

Primary

Success

Info

Warning

Danger