标题
Syntax
RESOURCE.Title
Returns
string
Title
方法在 Resource
对象上的返回值取决于资源的类型。
全局资源
对于全局资源,Title
方法返回相对于 assets 目录的资源路径。
assets/
└── images/
└── a.jpg
{{ with resources.Get "images/a.jpg" }}
{{ .Title }} → images/a.jpg
{{ end }}
页面资源
对于页面资源,Title
方法返回相对于页面包的资源路径。
content/
├── posts/
│ ├── post-1/
│ │ ├── images/
│ │ │ └── a.jpg
│ │ └── index.md
│ └── _index.md
└── _index.md
{{ with .Resources.Get "images/a.jpg" }}
{{ .Title }} → images/a.jpg
{{ end }}
如果在前置元数据的 resources
数组中创建了一个元素,则 Title
方法返回 title
参数的值:
content/posts/post-1.md
---
resources:
- name: cat
params:
temperament: malicious
src: images/a.jpg
title: Felix the cat
title: Post 1
---
+++
title = 'Post 1'
[[resources]]
name = 'cat'
src = 'images/a.jpg'
title = 'Felix the cat'
[resources.params]
temperament = 'malicious'
+++
{
"resources": [
{
"name": "cat",
"params": {
"temperament": "malicious"
},
"src": "images/a.jpg",
"title": "Felix the cat"
}
],
"title": "Post 1"
}
{{ with .Resources.Get "cat" }}
{{ .Title }} → Felix the cat
{{ end }}
如果页面资源是内容文件,则 Title
方法返回前置元数据中定义的 title
字段的值。
content/
├── lessons/
│ ├── lesson-1/
│ │ ├── _objectives.md <-- 资源类型 = 页面
│ │ └── index.md
│ └── _index.md
└── _index.md
远程资源
对于远程资源,Title
方法返回一个散列文件名。
{{ with resources.GetRemote "https://example.org/images/a.jpg" }}
{{ .Title }} → a_18432433023265451104.jpg
{{ end }}