主题开发
由于之前采用的white主题的开发者已将开源主题归档跑路不再维护,并且相较于本人在其他地方所看到的个人博客还有很多可以修改的可能,故决定在此基础之上进行修改,最后做出另一款自用的主题
在正式修改开发前需要先学习hexo主题的制作知识,以下综述总结于网络
预备
针对Hexo主题的开发需要了解
主题基本结构
一般来说hexo的主题需要有以下页面:
- 首页
index
- 存档页
archive
- 标签文章列表页
tag
- 分类文章列表页
category
- 文章详情页
post
- 页面详情页
page
这些文件是Hexo在生成HTML文件时要用到的,全部放在layout
文件夹中。这些页面内重复的组件代码,如页头页脚的部分,可以单独提取出来进行复用
此外,还有JS/CSS/图片/favicon.ico等文件直接放入source文件夹里,不需要页面引用
主题文件夹结构
1 2 3 4 5 6 7 8 9 10 11
| ├─languages //多语言文件夹 │ └─en.yml ├─layout //主题布局模板 │ ├─layout.ejs │ └─_partial //各页面共享的模板部分 ├─scripts //hexo脚本插件目录,可以编写一些辅助函数脚本 ├─source //资源文件目录,包括页面样式,js脚本等 │ ├─css │ │ └─index.styl │ └─js └─_config.yml //主题配置文件
|
应用主题
修改站点配置文件中的主题配置,使用主题:
详细
主题配置文件
_config.yml
:
1 2 3 4 5 6 7 8 9 10 11 12
| menu: home: / categories: /categories tags: /tags archives: /archives about: /about language: zh-CN
language: - zh-CN - en
|
多语言支持
Hexo 支持多语言显示,在主题的 languages
文件夹中,存放具体的多语言文件,可以是 YML 或者 JSON 文件。再在主配置文件 _config.yml
中使用下面的方法来指定具体的使用的配置文件名:
1 2 3 4 5
| language: zh-CN
language: - zh-CN - en
|
像下面这样组织语言文件,languages/en.yml
:
1 2 3
| archive_title: Archives category_title: Category tag_title: Tag
|
在模板里,当需要在页面中显示文字时,可以使用 Hexo 提供的帮助函数 __()
/ _p()
来读取具体的值,如:
1 2 3 4 5
| {% if is_archive() %} {% set pageTitle = _p('archive_title') %} {% endif %}
page_title
|
HTML框架
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| ├─layout ├─layout.ejs //通用的布局文件模板 ├─index.ejs //继承layout.ejs布局模板,首页 ├─post.ejs //文章详情页 ├─archive.ejs //归档页 ├─page.ejs //自定义页面模板 └─_partial ├─head.ejs ├─header.ejs ├─footer.ejs ├─category.ejs ├─tag.ejs ├─custom.ejs └─paginator.ejs
|
layout/layout.ejs
:
1 2 3 4 5 6 7 8 9 10 11
| <!DOCTYPE html> <html> <%- partial('_partial/head') %> //引入head.ejs <body> <div class="container"> <%- partial('_partial/header') %> //引入header.ejs <%- body %> //新增的ejs文件将内容填充在这里 <%- partial('_partial/footer') %> //引入footer.ejs </div> </body> </html>
|
partial()函数的作用是可以引入其他模板文件,详情参考hexo文档
layout/_partial/head.ejs
:
1 2 3 4 5
| <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport"> <title><%= config.title %></title> //config全局变量,包含站点配置 </head>
|
layout/_partial/header.ejs
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| <header class="header"> <div class="title"> <a href="<%= url_for() %>" class="logo"><%= config.title %></a> </div> <nav class="navbar"> <ul class="menu"> <% for (name in theme.menu) { %> //theme.menu获取theme_config中导航菜单的设置 <li class="menu-item"> <a href="<%- url_for(theme.menu[name]) %>" class="menu-item-link"><%= name %></a> </li> <% } %> </ul> </nav> </header>
|
layout/_partial/footer.ejs
:
1 2 3 4
| <footer> <p>Theme is <a href="/" target="_blank">Theme-example</a> by <a href="<%= config.url %>" target="_blank"><%= config.author %></a></p> <p>Powered by <a href="https://hexo.io/" target="_blank" rel="nofollow">hexo</a> © <%- date(Date.now(), 'YYYY') %></p> </footer>
|
index.ejs
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| //变量page会根据不同的页面拥有不同的属性,page变量的posts属性可以拿到文章数据的集合 //这个posts属性需要在layout的文件夹里新建post.ejs的文件才能获得对象的属性 <section class="posts"> <% page.posts.each(function (post) { %> //显示文章列表 <article class="post"> <div class="post-title"> <a class="post-title-link" href="<%- url_for(post.path) %>"><%= post.title %></a> </div> <div class="post-content"> <%- post.content %> //显示文章的全部内容 </div> 或者: <div class="post-content"> <%- post.excerpt %> //excerpt属性可获取文章的摘录部分,即文章中<!--more-->标记前的内容 //如果未标记,那么post.excerpt会是空的 </div> <div class="post-meta"> <span class="post-time"><%- date(post.date, "YYYY-MM-DD") %></span> // </div> </article> <% }) %> </section>
|
post.ejs
:
1 2 3 4 5 6 7 8 9 10 11
| <article class="post"> <div class="post-title"> <h2 class="title"><%= page.title %></h2> </div> <div class="post-meta"> <span class="post-time"><%- date(page.date, "YYYY-MM-DD") %></span> </div> <div class="post-content"> <%- page.content %> </div> </article>
|
archive.ejs
:
1 2 3 4 5 6 7 8 9 10 11
| <section class="archive"> <ul class="post-archive"> <% page.posts.each(function (post) { %> <li class="post-item"> <span class="post-date"><%= date(post.date, "YYYY-MM-DD") %></span> <a class="post-title" href="<%- url_for(post.path) %>"><%= post.title %></a> </li> <% }) %> </ul> </section> <%- partial('_partial/paginator') %>
|
CSS样式
1 2 3 4 5 6 7 8 9 10
| ├─source //资源文件目录,包括页面样式,js脚本等 ├─css │ ├─style.styl │ ├─index.styl │ └─_partial │ ├─header.styl │ ├─footer.styl │ ├─post.styl │ └─archive.styl └─js
|
Hexo提供 hexo-renderer-stylus
插件,只需要将样式文件放到 source/css
文件夹中。Hexo 在生成页面的时候会将 source
中的所有文件复制到生成的 public
文件中,并且在此之前会编译 styl
为 css
文件,把所有样式 import
到style.styl
,编译之后只会有 style.css
一个文件
style.styl
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| body { background-color: #F2F2F2; font-size: 1.25rem; line-height: 1.5; }
.container { max-width: 960px; margin: 0 auto; }
...
@import "_partial/header"; @import "index";
|
进一步细节
添加分页
首页显示的文章数量可以通过站点配置文件中的 per_page
字段来修改,但是不可能把所有文章都放在一页,所以需要添加文章列表的分页
_partial/paginator.ejs
1 2 3 4 5 6 7 8
| <% if (page.total > 1){ %> <nav class="page-nav"> <%- paginator({ prev_text: "« Prev", next_text: "Next »" }) %> </nav> <% } %>
|
在 index.ejs
中添加这个文件的内容:
1 2 3
| ... </section> <%- partial('_partial/paginator') %>
|
辅助函数 paginator
能够插入分页链接,这是最基本的分页,具体的样式可以自行添加,或者根据文档使用其他配置自定义分页
添加分类页/分类页
分类页和标签页的模板编写比较特殊,本质上,分类页和标签页属于自定义页面,需要新建自定义页面模板page.ejs
1 2 3 4 5 6 7
| <% if (is_current(theme.menu.categories)) { %> <%- partial('_partial/category') %> <% } else if (is_current(theme.menu.tags)) { %> <%- partial('_partial/tag') %> <% } else { %> <%- partial('_partial/custom') %> <% } %>
|
需要根据当前自定义页面的类型来决定渲染何种自定义页面模板。
_partial/category.ejs
:
1 2 3 4 5 6 7 8 9 10 11 12 13
| <section class="archive"> <ul class="post-archive"> <% site.categories.each(function (category) { %> <span><%= category.name %></span> <% category.posts.forEach(function(post) { %> <li class="post-item"> <span class="post-date"><%= date(post.date, "YYYY-MM-DD") %></span> <a class="post-title" href="<%- url_for(post.path) %>"><%= post.title %></a> </li> <% }) %> <% }) %> </ul> </section>
|
_partial/tag.ejs
:
1 2 3 4 5 6 7 8 9 10 11 12 13
| <section class="archive"> <ul class="post-archive"> <% site.tags.each(function (tag) { %> <span><%= tag.name %></span> <% tag.posts.forEach(function(post) { %> <li class="post-item"> <span class="post-date"><%= date(post.date, "YYYY-MM-DD") %></span> <a class="post-title" href="<%- url_for(post.path) %>"><%= post.title %></a> </li> <% }) %> <% }) %> </ul> </section>
|
site.categories
包括了站点所有的分类信息,可以遍历获取分类信息,其中category.posts
又包含了该分类的所有文章信息。
需要注意的是,要想在页面中展示分类页,需要先执行hexo new page categories
(tag
)生成分类页面,并修改type
为categories
(tag
)
post/category(tag)/categories(tag).md
:
1 2 3 4 5
| --- title: categories date: 2019-02-25 18:19:55 type: "categories/tag" ---
|
添加自定义页面
自定义页面与文章详情页类似
_partial/custom.ejs
:
1 2 3 4 5 6 7 8 9 10 11
| <article class="post"> <div class="post-title"> <h2 class="title"><%= page.title %></h2> </div> <div class="post-meta"> <span class="post-time"><%- date(page.date, "YYYY-MM-DD") %></span> </div> <div class="post-content"> <%- page.content %> </div> </article>
|
并需要在主题配置文件中添加自定义页面的菜单(见前文)
关于页面执行hexo new page about
进行手动生成页面,编辑文件内容即可
Hexo插件
Hexo 有强大的插件系统,让我们能够轻松扩展功能而不用修改核心模块的源码。在 Hexo 中有两种形式的插件:
如果代码很简单,可以编写脚本,只需要把 JavaScript 文件放到 scripts
文件夹,在启动时就会自动载入
想给首页文章列表中的文章块添加一个背景颜色,背景颜色可以在文章md文件中定义,如果未定义,则随机选用一种颜色
首先,文章md文件中顶部Front-matter添加一个color
字段:
_posts/hello-world-1.md
:
1 2 3 4 5 6 7
| title: Hello World 1 date: 2019-02-12 17:49:32 categories: 分类1 tags: - 标签1 color: blue ---
|
定义完成后,就可以在文章信息字段post
或者page
中获取到color
然后,需要添加一个脚本函数来根据color
字段来获取文章块的背景颜色,新增scripts/getPostBgColor.js
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| const arr = [ 'blue', 'purple', 'green', 'yellow', 'red', 'orange' ];
var getPostBgColor = function(color) { if (arr.indexOf(color) >= 0) { return `bg-${color}`; } return 'bg-' + randBgColor(); };
function randBgColor() { return arr[randomInt(0, 5)]; }
function randomInt(min, max) { return Math.round(Math.random() * (max - min)) + min; }
hexo.extend.helper.register('getPostBgColor', getPostBgColor);
|
layout/index.ejs
:
1 2 3
| ... <article class="post <%= getPostBgColor(post.color) %>"> ...
|
添加背景颜色样式,编辑css/index.styl
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| ... .bg-blue { background-color: #6fa3ef; } .bg-purple { background-color: #bc99c4; } .bg-green { background-color: #46c47c; } .bg-yellow { background-color: #f9bb3c; } .bg-red { background-color: #e8583d; } .bg-orange { background-color: #f68e5f; }
|
有其他复杂的需求,可以通过编写更加复杂的脚本来实现
Hexo的数据DB扩展查询
我们已经知道,Hexo已经为我们预先义了很多常用的变量供我们使用,具体可以在 Hexo | 变量 查询。但是如果系统提供的变量数据不能满足我们的要求,那我们该怎么办呢?其实我们可以通过扩展查询来获取到我们期望的数据。
其实Hexo所有的文章分类标签等等变量信息,在编译成本地静态文件之前,都是本地存储在一个db.json
中的,相当于小型的本地数据库,Hexo在运行阶段,所有的数据相关操作其实都是在这个小型数据库上进行操作,其底层使用的查询引擎就是Warehouse。因此我们可以通过Warehouse的语法进行自定义扩展查询。
比如我们需要在页面的底部展示全站的最近6篇文章列表,由于Hexo首页只提供了第一页的数据,因此我们可以基于site
变量进行扩展查询:
1
| site.posts.sort({date: -1}).limit(6)
|
site.posts
表示所有的文章,sort({date: -1})
表示按创建时间倒序排列,limit(6)
表示只取前6条数据,这样我们就可以拿到了全站的最近6文章信息,后续进行相应展示操作即可。
其他更多复杂的扩展查询都可以根据Warehouse语法文档进行按需扩展。
总结
其实说白了,Hexo就是把那些 Markdown 文件,按照我们编写的对应布局模板,填上对应的数据生成 HTML 页面,然后在编译的过程中将JS/CSS等文件引入HTML,然后生成每个页面的对应HMTL静态文件。
而Hexo主题的作用就是决定每个布局模板长什么样