用于从页面资源文件、站点资源文件和项目文件读取内容的短代码,其对重用内容十分有用,比如代码片段。
成为我们的资助者或赞助商,以支持我们的工作。
1{{< file-content "/path/to/file" >}}
name
索引 | 名称 | 类型 | 必填 | 默认值 | 版本 | 示例 |
---|---|---|---|---|---|---|
#0 | name | string | ✓ | - | - | - |
文件名。
1{{< file-content "data/foo.txt" >}}
1console.log('Hello world!')
1{{< file-content "data/hello.js" >}}
1google.com, pub-7827859788508375, DIRECT, f08c47fec0942fa0
1{{< file-content "static/ads.txt" >}}
1{{< file-content "static/invalid.txt" >}}
以 Bootstrap 配置切换为例。
1title: Site Title
1{{< bs/config-toggle hugo >}}
2{{< file-content "data/hugo.yaml" >}}
3{{< /bs/config-toggle >}}
hugo.yaml
1title: Site Title
hugo.toml
1title = 'Site Title'
hugo.json
1{
2 "title": "Site Title"
3}