removed final SLUG instances in build script

This commit is contained in:
skeddles 2021-07-06 12:00:54 -04:00
parent 9c9818e051
commit 6d66963509

View File

@ -46,13 +46,13 @@ function render_css(){
} }
function compile_page(){ function compile_page(){
gulp.src(path.join('./views/', SLUG + '.hbs')) gulp.src(path.join('./views/index.hbs'))
.pipe(hb({encoding: 'utf8'}) .pipe(hb({encoding: 'utf8'})
.partials('./_ext/modules/_*.hbs') .partials('./_ext/modules/_*.hbs')
.helpers({ svg: hb_svg }) .helpers({ svg: hb_svg })
.helpers('./_ext/modules/hbs/helpers/**/*.js') .helpers('./_ext/modules/hbs/helpers/**/*.js')
.data({ .data({
projectSlug: SLUG, projectSlug: 'pixel-editor',
title: 'Lospec Pixel Editor', title: 'Lospec Pixel Editor',
layout: false, layout: false,
})) }))