My '{{#each pages }}' no longer works. Guessing from the fact collections became first class citizens i tried creating a view collection:
app.create("blog")
app.blogs('./src/templates/blog-pages/**');
return app.toStream("blogs")
.pipe(app.renderFile('*'))
.pipe(extname())
.pipe(app.dest('./build/public/blog'));
I have tried many variations like {{#each blog }} etc. Also my {{#each categories}} is not working.
My '{{#each pages }}' no longer works. Guessing from the fact collections became first class citizens i tried creating a view collection:
I have tried many variations like
{{#each blog }}etc. Also my{{#each categories}}is not working.