It has been 663 days since the last update, the content of the article may be outdated.

Hexo-Theme-Anzhiyu常用Demo

主题图标

anzhiyu-icon

标签外挂是 Hexo 独有的功能,并不是标准的 Markdown 格式。 以下的写法,只适用于 AnZhiYu 主题,用在其它主题上不会有效果,甚至可能会报错。使用前请留意

Note (Bootstrap Callout)

html
1
2
3
4
5
6
7
{% note simple %}默认 提示块标签{% endnote %}
{% note default simple %}default 提示块标签{% endnote %}
{% note primary simple %}primary 提示块标签{% endnote %}
{% note success simple %}success 提示块标签{% endnote %}
{% note info simple %}info 提示块标签{% endnote %}
{% note warning simple %}warning 提示块标签{% endnote %}
{% note danger simple %}danger 提示块标签{% endnote %}

This is Tab 2.

样式 : simple modern flat disabled no-icon

simple样式

默认 提示块标签

default 提示块标签

primary 提示块标签

success 提示块标签

info 提示块标签

warning 提示块标签

danger 提示块标签

modern样式

默认 提示块标签

default 提示块标签

primary 提示块标签

success 提示块标签

info 提示块标签

warning 提示块标签

danger 提示块标签

HideToggle

bash
1
2
3
4
5
6
{% hideToggle Butterfly安装方法 %}
在你的博客根目录里
git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/Butterfly
如果想要安装比较新的dev分支,可以
git clone -b dev https://github.com/jerryc127/hexo-theme-butterfly.git themes/Butterfly
{% endhideToggle %}

样式 : simple modern flat disabled no-icon

Butterfly安装方法

在你的博客根目录里
git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/Butterfly
如果想要安装比较新的dev分支,可以
git clone -b dev https://github.com/jerryc127/hexo-theme-butterfly.git themes/Butterfly

分栏 Tabs

html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% tabs test2, 3 %}

<!-- tab t1@far fa-paper-plane -->
**This is Tab 1.**
<!-- endtab -->

<!-- tab -->
**This is Tab 2.**
<!-- endtab -->

<!-- tab -->
**This is Tab 3.**
<!-- endtab -->

{% endtabs %}

样式 : simple modern flat disabled no-icon

This is Tab 1.

This is Tab 2.

This is Tab 3.

demo

html
1
{% note simple %}默认 提示块标签{% endnote %}

样式 : simple modern flat disabled no-icon

加密插件安装

安装命令

bash
1
npm install --save hexo-blog-encrypt

加密使用

Front matter配置方法

md
1
2
3
4
5
6
password: 1234
abstract: 有东西被加密了, 请输入密码查看.
message: 您好, 这里需要密码.
theme: xray
wrong_pass_message: 抱歉, 这个密码看着不太对, 请再试试.
wrong_hash_message: 抱歉, 这个文章不能被校验, 不过您还是能看看解密后的内容.

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

bash
1
hexo new "My New Post"

More info: Writing

Run server

bash
1
hexo server

More info: Server

Generate static files

bash
1
hexo generate

More info: Generating

Deploy to remote sites

bash
1
hexo deploy

More info: Deployment