I've created several apps with a single list, but in this specific area I'd like to use two lists in a single app. Is there a way this can be done, and if so how would I refer to the correct list in the repeater/loop?
Here's an example of how I iterate through the items in the list currently:
@foreach (var e in List)
{
var Content = e.Content;
<div class="col-md-3 col-sm-4">
<div class="staff-info" style="background-image: url('@Content.StaffPhoto'); background-size: cover;">
@Edit.Toolbar(Content)
<div class="staff-label">
<p class="fullname upper">@Content.Name</p>
<p class="jobtitle upper">@Content.Title</p>
<hr style="border-color:white; max-width: 90%">
<p class="staff-quote"> “@Content.Quote”</p>
</div>
</div>
</div>
}