gulp-assemble
gulp-assemble copied to clipboard
Deprecated. Assemble can be used directly with or without gulp.
Child Pages
Original ticket on the assemble.io repo. https://github.com/assemble/assemble/issues/537#issuecomment-47785369 Is there a way to set up child pages with gulp-assemble? For example `example.com/parent/child.html`. Looks like you can use "flatten" (https://github.com/assemble/assemble#flatten) in Grunt....
Hi, I'm new to assemble and I try to use it to generate a static website on github. We have a directory structure for our *.hbs files like this :...
| src |**subfolder |____foo.hbs |__subfolder2 |____foo.hbs |** ``` js gulp.task('convert-hbs', function(){ return gulp.src('./src/**/*.hbs') .pipe(gulpAssemble(assemble, {layout: 'default'})) .pipe(gulp.dest(paths.build)); }); ``` only renders "subfolder2 > foo.html". If give the files unique names...
GULP version [12:42:14] CLI version 3.8.10 [12:42:14] Local version 3.8.10 My config is this: gulp.task('assemble', function () { gulp.src('source/assemble/pages/*.hbs') .pipe(gulpAssemble(assemble)) .pipe(extname()) .pipe(gulp.dest('build/')); }); And the error stack: TypeError: Object #...
Just some feedback about how the {{assets}} helper is working: When in the root dir it gives `./` When not you get `..` Which means if I put in `{{assets}}/index.html`...
I am trying to gather up all my pages and output them as a unordered list. ``` {{#each pages }} {{basename }} {{/each}} ``` I thought I was following 0.6.0...
Hi, I'm trying to get variables to pick up in layouts. Is it not possible to set variables in layouts at the moment, or am I doing it wrong? Thanks...
This used to work in the grunt assemble: ``` --- ph-class: --- ``` Is there any way to get this working in the current gulp assemble. Managed to get everything...