-
@reubenlillie @eleven_ty
this.shortcode(data.collections)
will pass in all collectionsthis.shortcode(data.collections.myTag)
will pass in a specific one Something like: render(data) { return# ${this.shortcode(data.collections.myTag)}
; }
this.shortcode(data.collections)
will pass in all collections this.shortcode(data.collections.myTag)
will pass in a specific one
Something like:
render(data) {
return # ${this.shortcode(data.collections.myTag)}
;
}