Hexo 主题 Tree
一个简洁的主题,主要功能是 “树状导航” + “树状目录”,可选配“评论”和“阅读量”功能,支持基于搜索引擎的全站搜索。通过 fancybox 支持图片点击放大。
有问题欢迎及时联系,issues、邮件都行
Demo:https://wujun234.github.io/
使用说明
1 下载主题
下载主题到 hexo
根目录中 themes
目录下
git clone https://github.com/wujun234/hexo-theme-tree.git themes/tree
修改 hexo
根目录的 _config.yml
theme: tree
2 配置主题
如果要使用 valine
的评论及阅读量功能,需要在 themes/tree
路径下的 _config.yml
文件中,填写自己申请的 leancloud
账户下面的 appID
和 appKey
valine:
appID:
appKey:
若不需使用,则设置
valine:
enableComment: false
enableCounter: false
3 导航栏和图标
- 导航栏:当前没有配置化,需要修改
themes/tree/layout/_partial
路径下的header.ejs
文件 - 图标:替换
themes/tree/source
路径下的favicon.ico
文件
4 about 页
在 source
路径下,与_posts
文件夹平行,建立一个about
页
执行
hexo new page --path about/index "About"
参考:https://hexo.io/zh-cn/docs/commands.html#new
5 文章树、目录树
页面左侧的文章树是根据 source 文件夹里的文章和文件夹生成的
修改主题 tree
目录的 _config.yml
, sidebar.usePostTitle
可以控制目录树中展示文件名还是文章名
# 左侧导航栏,用文件名还是文章名
sidebar:
# usePostTitle 为 ture 用文章名,不填或为 false 用文件名
usePostTitle: true
6 全站搜索
修改主题 tree
目录的 _config.yml
站点如果【被搜索引擎收录】,可以配置通过搜索引擎全站搜索
- searchEngine: 你选择的搜索引擎搜索 url,默认谷歌,例如"https://www.baidu.com/s?wd="、"https://www.google.com/search?q="
- homeHost: 你的域名,默认当前页面的域名
7 tags 页
在 source
路径下,与_posts
文件夹平行,建立一个tags
页
执行
hexo new page "tags"
编辑 source/tags/index.md
---
title: tags
date: 2021-02-26 16:36:55
type: "tags"
layout: "tags"
---
修改主题 tree
目录的 _config.yml
,添加
tags: true
8 categories 页
在 source
路径下,与_posts
文件夹平行,建立一个categories
页
执行
hexo new page "categories"
编辑 source/tags/index.md
---
title: categories
date: 2021-02-26 16:36:55
type: "categories"
layout: "categories"
---
修改主题 tree
目录的 _config.yml
,添加
categories: true
9 pjax
主题默认支持了 pjax 跳转,但是在网速慢的时候,pjax 因为没有页面刷新的交互,可能会让人误以为点击没响应。
如果要去掉 pjax 特性,注释掉主题 'source/js/main.js' 文件中的 'pjaxLoad()' 方法就好。
$(document).ready(function () { hljs.initHighlightingOnLoad(); clickTreeDirectory(); serachTree(); // pjaxLoad(); showArticleIndex(); switchTreeOrIndex(); scrollToTop(); pageScroll(); wrapImageWithFancyBox(); });
其他
图片
最开始将图片放在 source 中,使用 github 的相对地址,但是本地 md 编辑器不能识别这样的图片,
后续选择了 picgo,用 github 做图床:https://picgo.github.io/PicGo-Doc/
推荐插件
推荐安装 Markdown-it 插件渲染 Markdown
替换之后注意将 _config.yml 中 hexo 默认的 Markdown 配置改一下
highlight:
enable: false
line_number: false
auto_detect: false
tab_replace: ''
访问管理
我自己用的是百度统计 https://tongji.baidu.com ,很简单,注册后在 'head' 里加一个 '<script>' 块就行了
文章来源:https://github.com/wujun234/hexo-theme-tree
标签:hexo,tags,tree,source,theme,https,yml From: https://www.cnblogs.com/tianyitest/p/17073439.html