gpt4 book ai didi

html - Jekyll Github 页面如何隐藏帖子

转载 作者:技术小花猫 更新时间:2023-10-29 12:29:41 25 4
gpt4 key购买 nike

我在我的网站上使用带有 Github 页面的 jekyll。我试图让一些帖子在家里不可见,但它们可以从另一个帖子链接。在 frontmatter 中,我尝试添加一个可见的字段,如下所示:

---
layout: post
title:
excerpt:
visible:1
---

然后在 index.html 文件中我做了一个 if 检查:

<div class="posts">
{% for post in paginator.posts %}
{% if post.visible== 1 %}

<div class="post">
<h1>
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h1>

<span class="post-date">{{ post.date | date_to_string }}</span>
<a class="subtitle" href="{{ post.url }}">
{{ post.excerpt }}
</a>
</a>
</div>
{% endif %}
{% endfor %}
</div>

我的想法是,当我在可见字段中设置 0 时,该帖子将不会在主页中可见。不幸的是,这不起作用,你有什么提示吗?谢谢

最佳答案

这对我有用:

---
layout: post
title: About Lumen
published: false
---

See [About]({{ site.baseurl }}/about)

关于html - Jekyll Github 页面如何隐藏帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23935062/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com