添加收藏页
It has been 158 days since the last update, the content of the article may be outdated.
该法把网址导航的内容放在博客目录中,现在改用webstack主题网址导航(https://webstack.aligu.top), 并另外部署到服务器中。
前言
本次建站收藏页的教程及相关代码文件来自于:Github
可前往博主ConstOwn的收藏页查看效果。
该教程转自:
ConstOwn
给你的博客添加一个收藏页
新建收藏页
- 前往hexo博客根目录
新建一个纯页面page
shell1
hexo new page stars
得到source/stars/index.md这个文件,并进行后续修改
md1
2
3
4
5---
title: 我的收藏
comments: false
type: stars
---在butterfly对应主题配置文件_config.butterfly.yml修改menu的相关设置:
yaml1
2menu:
收藏网址: /stars/ || fas fa-star
添加样式
在stars文件目录中添加css样式(该文作者使用js渲染),然后在index.md文件中引入js文件。从Github
下载以下三个文件,并将其存放于stars文件夹中:
评论