CurrentSection
Syntax
PAGE.CurrentSection
Returns
hugolib.pageState
一个 section 是最高级别的内容目录,或者是带有索引文件 index.md 的任意内容目录。
考虑以下内容结构:
content/
├── auctions/
│ ├── 2023-11/
│ │ ├── _index.md <-- 当前部分: 2023-11
│ │ ├── auction-1.md
│ │ └── auction-2.md <-- 当前部分: 2023-11
│ ├── 2023-12/
│ │ ├── _index.md
│ │ ├── auction-3.md
│ │ └── auction-4.md
│ ├── _index.md <-- 当前部分: auctions
│ ├── bidding.md
│ └── payment.md <-- 当前部分: auctions
├── books/
│ ├── _index.md <-- 当前部分: books
│ ├── book-1.md
│ └── book-2.md <-- 当前部分: books
├── films/
│ ├── _index.md <-- 当前部分: films
│ ├── film-1.md
│ └── film-2.md <-- 当前部分: films
└── _index.md <-- 当前部分: 主页
要创建到当前部分页面的链接:
<a href="{{ .CurrentSection.RelPermalink }}">{{ .CurrentSection.LinkTitle }}</a>