Desired Outcome
I'd like to define a list of contributors to an article from data YML files for each person.
Frontmatter
---
collection: events
format: right-sidebar
layout: events
title: xxxxxxxxxxxxxxxxxxxx
contributors: [david-amerland, denver-prophit]
image: fiction-book-essentials.jpg
categories: technical-seo
tags: semantic-web
is_post: True
excerpt: "xxxxxxxxxxxxxxxxxxxx"
---
Layout
{% for item in site.data.contributors[page.contributors] %}{{item|inspect}}{%endfor%}
Data File
david-amerland.yml
name: David Amerland
url: https://g.co/kgs/QpjJVr
denver-prophit.yml
name: Denver Prophit
url: https://g.co/kgs/55pDpp
Problem
I can only select one data record. I need a record hash of more than two.