I got my Cook's Illustrated latest issue, and it had two chicken pho recipes in it, so I added those as the first two recipes here.
I keep adding this as a general pattern:
<$list filter="[tag[SOMETAG]]">
<li><$link>{{!!title}}</$link> {{!!notes}} <a href="{{!!uri}}">{{!!uri}}</a></li>
</$list>
Might be better as a View template? Certainly for "tags" or meta-types, like chicken pho or cream. What's the right name for these items? "base"? except that's sort of a cooking term already. Going for generic
for now, which...somehow isn't great either.
I added Article as a thing, as well as Cookbook and Magazine. page
is a field, and cookbook
as the general "source" for things. For one-off recipes, it's more useful to use the universal uri
field.
Steven is working on an Ingredient & Recipe Manager app which got me thinking about "local" and "in season". I added region
to a couple of things which are definitely local.
Worked on within field a little more. Here’s the filter snippet for British Columbia:
<$list filter="[contains:within[British Columbia]]">
<li><$link>{{!!title}}</$link> {{!!notes}}</li>
</$list>