Hugo-自定义内容类型的呈现列表视图

We created a custom content type called "properties". Our content directory looks as follows: content/property/. We then created a single and list layout for the properties in our theme: themes/theme_name/layouts/property/.

Single works fine. We can't get the list layout to work at all. What template functions do we need to iterate over our properties in a list view? In single.html we use {{range .Data.Properties }} and {{ range .Data.Page }}, we also tried this in list.html. Basically, we just need to know how to iterate over data from markdown files for a specific content type on a page.