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
1 changed files with 2 additions and 2 deletions

View File

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