Eric T Grubaugh

Results 3 comments of Eric T Grubaugh
trafficstars

I am currently using the CLI with this plugin, and it works just fine. As mentioned previously, `metalsmith-collections` is the very first plugin I invoke: ``` "plugins": { "metalsmith-collections": {...

@fracu I just accomplished this today using Handlebars' `lookup` helper: My handlebars layout: ``` html {{#each (lookup collections rollup)}} {{ this.title }} {{{ this.excerpt }}} {{/each}} ``` My yaml front-matter:...