15、隐藏文件+加密文件

一、安装文件隐藏插件

安装插件

1
$ yarn add hexo-hide-posts --save

使用

1
2
3
4
5
6
7
---
title: 1、搭建流程-预配知识
index_img: https://cdn.jsdelivr.net/gh/mogullzr/Typora_img@main/202401270033668.webp
date: 2024-01-22 22:36:52
hide: true // 这里作用是可以隐藏该文件
categories: Hexo-Fluid搭建个人博客
---

二、安装文件加密插件

安装插件

1
$ yarn add hexo-blog-encryp --save

头条问题(高级设置)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 默认
---
abstract: Here's something encrypted, password is required to continue reading.
message: Hey, password is required here.
wrong_pass_message: Oh, this is an invalid password. Check and try again, please.
wrong_hash_message: Oh, these decrypted content cannot be verified, but you can still have a look.
---

// 自定义
---
title: 1、搭建流程-预配知识
index_img: https://cdn.jsdelivr.net/gh/mogullzr/Typora_img@main/202401270033668.webp
date: 2024-01-22 22:36:52
categories: Hexo-Fluid搭建个人博客
---

_config.yml

在根目录或者Fuild的主题文件下的配置文件下添加下面代码

1
2
3
4
5
encrypt:
abstract: 改文章已被加密, 请输入密码查看.
message: 您好,请输入密码
wrong_pass_message: 抱歉, 密码错误, 再试试.
wrong_hash_message: 抱歉, 这个文章不能被校验, 不过您还是能看看解密后的内容.