I'm attempting to use a custom layout for the style guide output. However, this doesn't seem to work
In my gulpfile, I have this:
var styleguideOptions = {
site: {
title: 'Bloc{CSS} Documentation',
css: appFiles.css
},
src: {
css: basePaths.src + assetPaths.css + '**/*.css',
templates: ['src/templates/**/*.mustache']
},
dest: {
html: basePaths.dest + assetPaths.app
}
};
gulp.task('templates', plugins.styleguide.templates(styleguideOptions));
gulp.task('build', ['templates'], plugins.styleguide.build(styleguideOptions));
As you can see, I'm passing in the location to the templates (path vars are confirmed correct). However it's not using my layout.
I'm attempting to use a custom layout for the style guide output. However, this doesn't seem to work
In my gulpfile, I have this:
As you can see, I'm passing in the location to the templates (path vars are confirmed correct). However it's not using my layout.