Skip to content

Fluid隐藏文档

Fluid主题已集成此功能:官方文档

全局隐藏

不在首页和其他归档分类页里展示,可以在文章开头front-matter中配置 hide: true属性。

:隐藏后依然可以通过文章链接访问,所以可以用于一些需要链接跳转的特殊文章。

yaml
---
title: 文章标题
index_img: /img/example.jpg
date: 2019-10-10 10:00:00
hide: true
---
以下是文章内容

仅首页隐藏

如果只是想让文章在首页隐藏,但仍需要在归档分类页里展示,可以在文章开头front-matter中配置 archive: true属性。

:此时不需要添加 hide:true属性。

yaml
---
title: 文章标题
index_img: /img/example.jpg
date: 2019-10-10 10:00:00
archive: true
---
以下是文章内容

未经许可禁止任何形式的转载