第一部分

语言

rss

标签、类别、

账户

公益

首页显示

背景显示

参考链接

$ cd themes/next
$ git clone https://github.com/theme-next/theme-next-canvas-nest source/lib/canvas-nest

更改配置文件

canvas_nest:
enable: true
...

https://github.com/theme-next/theme-next-canvas-nest

侧边栏推荐阅读

theme/next/_config.yml

# Blogrolls
links_title: 推荐阅读
#links_layout: block
links_layout: inline
links:
简单即是美: https://simuty.github.io/

第二部分

文章头

自定义样式

打开\themes\next\source\css\_custom\custom.styl,向里面加入:(颜色可以自己定义)

// Custom styles.
code {
color: #ff7600;
background: #fbf7f8;
margin: 2px;
}
// 大代码块的自定义样式
.highlight, pre {
margin: 5px 0;
padding: 5px;
border-radius: 3px;
}
.highlight, code, pre {
border: 1px solid #d6d6d6;
}

统计字数

$ npm install hexo-wordcount --save

然后在/themes/next/layout/_partials/footer.swig文件尾部加上:

<div class="theme-info">
<div class="powered-by"></div>
<span class="post-count">博客全站共{{ totalcount(site) }}字</span>
</div>

阅读时长

npm i hexo-symbols-count-time --save

hexo/_config.yml中添加

symbols_count_time:
symbols: true
time: true
total_symbols: true
total_time: true

hexo/theme/next/_config.yml中找到

# Post wordcount display settings
# Dependencies: https://github.com/theme-next/hexo-symbols-count-time
symbols_count_time:
separated_meta: true
item_text_post: true
item_text_total: false
awl: 4
wpm: 275

代码

音视频

post阴影

打开\themes\next\source\css_custom\custom.styl,向里面加入:

// 主页文章添加阴影效果
.post {
margin-top: 60px;
margin-bottom: 60px;
padding: 25px;
-webkit-box-shadow: 0 0 5px rgba(202, 203, 203, .5);
-moz-box-shadow: 0 0 5px rgba(202, 203, 204, .5);
}

http://devinol.com/Hexo/Next%E4%B8%BB%E9%A2%98%E4%BC%98%E5%8C%96-%E4%BA%8C/

$ npm install hexo-generator-searchdb --save

打开 站点配置文件 ,添加配置

search:
path: search.xml
field: post
format: html
limit: 10000
打开 主题配置文件 ,搜索关键字local_search,设置为true
# Local search
# Dependencies: https://github.com/flashlab/hexo-generator-search
local_search:
enable: true
# if auto, trigger search by changing input
# if manual, trigger search by pressing enter key or search button
trigger: auto
# show top n results per article, show all results by setting to -1
top_n_per_article: 1

打赏

文章加密
https://github.com/MikeCoder/hexo-blog-encrypt/blob/master/ReadMe.zh.md
hexo-blog-encrypt

参考链接

†少女癌†

第一部分

语言

rss

标签、类别、

账户

公益

首页显示

背景显示

参考链接

$ cd themes/next
$ git clone https://github.com/theme-next/theme-next-canvas-nest source/lib/canvas-nest

更改配置文件

canvas_nest:
enable: true
...

https://github.com/theme-next/theme-next-canvas-nest

侧边栏推荐阅读

theme/next/_config.yml

# Blogrolls
links_title: 推荐阅读
#links_layout: block
links_layout: inline
links:
简单即是美: https://simuty.github.io/

第二部分

文章头

自定义样式

打开\themes\next\source\css\_custom\custom.styl,向里面加入:(颜色可以自己定义)

// Custom styles.
code {
color: #ff7600;
background: #fbf7f8;
margin: 2px;
}
// 大代码块的自定义样式
.highlight, pre {
margin: 5px 0;
padding: 5px;
border-radius: 3px;
}
.highlight, code, pre {
border: 1px solid #d6d6d6;
}

统计字数

$ npm install hexo-wordcount --save

然后在/themes/next/layout/_partials/footer.swig文件尾部加上:

<div class="theme-info">
<div class="powered-by"></div>
<span class="post-count">博客全站共{{ totalcount(site) }}字</span>
</div>

阅读时长

npm i hexo-symbols-count-time --save

hexo/_config.yml中添加

symbols_count_time:
symbols: true
time: true
total_symbols: true
total_time: true

hexo/theme/next/_config.yml中找到

# Post wordcount display settings
# Dependencies: https://github.com/theme-next/hexo-symbols-count-time
symbols_count_time:
separated_meta: true
item_text_post: true
item_text_total: false
awl: 4
wpm: 275

代码

音视频

post阴影

打开\themes\next\source\css_custom\custom.styl,向里面加入:

// 主页文章添加阴影效果
.post {
margin-top: 60px;
margin-bottom: 60px;
padding: 25px;
-webkit-box-shadow: 0 0 5px rgba(202, 203, 203, .5);
-moz-box-shadow: 0 0 5px rgba(202, 203, 204, .5);
}

http://devinol.com/Hexo/Next%E4%B8%BB%E9%A2%98%E4%BC%98%E5%8C%96-%E4%BA%8C/

$ npm install hexo-generator-searchdb --save

打开 站点配置文件 ,添加配置

search:
path: search.xml
field: post
format: html
limit: 10000
打开 主题配置文件 ,搜索关键字local_search,设置为true
# Local search
# Dependencies: https://github.com/flashlab/hexo-generator-search
local_search:
enable: true
# if auto, trigger search by changing input
# if manual, trigger search by pressing enter key or search button
trigger: auto
# show top n results per article, show all results by setting to -1
top_n_per_article: 1

打赏

文章加密
https://github.com/MikeCoder/hexo-blog-encrypt/blob/master/ReadMe.zh.md
hexo-blog-encrypt

参考链接

†少女癌†

>0001 为何要写博客?

…记录点滴、分享所得。

>0010 为何要自建博客?

…一分为乐趣,一分为自由。

>0011 类似的资源那么多,为何要重复?

…存在不代表拥有,所得才可拥有

Hello World

printf("Hello World");
System.out.println("Hello World");
console.log("Hello World");

asd

学不可以已。(《荀子·劝学》)
阅读全文 »