CurrentSection

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             <-- 當前區域:home

要創建指向當前區域頁面的鏈接:

<a href="{{ .CurrentSection.RelPermalink }}">{{ .CurrentSection.LinkTitle }}</a>