gpt4 book ai didi

jekyll - Jekyll-如果页面是帖子,则更改布局?

转载 作者:行者123 更新时间:2023-12-03 10:11:08 28 4
gpt4 key购买 nike

在Jekyll布局中,是否有任何方法可以检测页面是普通页面还是帖子?我要显示帖子标题,而不是页面标题。像这样:

{% if page.is_post? %}
<h2>{{ page.title }}</h2>
{% endif %}
{{ content }}

最佳答案

从Jekyll 2.0开始,您可以使用Front Matter Defaults:

defaults:
-
scope:
path: "" # empty string for all files
type: posts # limit to posts
values:
is_post: true # automatically set is_post=true for all posts

那么您可以使用 {{ page.is_post }}来检查该页面是否已发布。

不知道为什么Jekyll默认不设置 page.type

关于jekyll - Jekyll-如果页面是帖子,则更改布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18675610/

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