我想在目录中显示所有jpg图像。
我的叶束结构是这样的:
site/
-> content/
-> mypage/
-> index.md
images/
-> john.jpg
bryan.jpg
mary.jpg
我觉得这不是一个非常奇怪或不寻常的用例,所以我不确定为什么文档没有提供一个很好的例子。
我需要知道在index.md文件中写什么才能显示图像。 这就是我到目前为止所拥有的。
---
title: "Pictures"
date: 2019-01-10T19:50:24-05:00
draft: true
resources:
- name: jpg-file-:counter
src: 'images/**.jpg'
---
## Check out my page!
### I want to display all the .jpg in ```images/```
{{ with .Resources.ByType "image" }}
// I really wish I could get a console log in here
// this feels like shooting into the dark
{{ end }}
请尽可能提供一些实际代码示例的链接。我找不到页面资源和页面捆绑实现的许多示例。在教程中没有很好地解决。