From 6d6696350901293649c90301a9eb8621515d7c6d Mon Sep 17 00:00:00 2001 From: skeddles Date: Tue, 6 Jul 2021 12:00:54 -0400 Subject: [PATCH] removed final SLUG instances in build script --- build.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.js b/build.js index 0094135..b7558cc 100644 --- a/build.js +++ b/build.js @@ -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, }))