尝试使用数据设置分页,其中{{ title }}
in是projects.json中定义的当前<head><title>{{ title }}</title></head>
页面的标题
假设可以这样做:
# main.njk
<head>
<title>{{ title }}</title>
</head>
# page.njk
---
layout: main.njk
pagination:
data: projects
size: 1
alias: project
permalink: "work/{{ project.title | slug }}/"
title: {{ project.title }}
可能误解了一些基本原理,但{{ title }}
结果却[object, object]
相反。永久链接工作正常...