latest update: 10/12/2018
created: 04/09/2018
Thank you for purchasing my template. If you have any questions that are beyond the scope of this help file, please feel free to Drop Message at Profile Page
<form action="https://pixelstrap.us19.list-manage.com/subscribe/post?u=5a128856334b598b395f1fc9b&id=082f74cbda" class="form-inline subscribe-form auth-form needs-validation" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" target="_blank">
<div class="form-group mx-sm-3">
<input type="text" class="form-control" name="EMAIL" id="mce-EMAIL" placeholder="Enter your email" required="required">
</div>
<button type="submit" class="btn btn-solid" id="mc-submit">subscribe</button>
</form>
For customized mailchimp , refer this links which is below:
https://mailchimp.com/capture-holiday-traffic/First, you must download and install node.js. NPM stands for node packaged modules and is a way to manage development dependencies through Node.js.
Download the Node.js source code or a pre-built installer for your platform, and start developing, you can download it from nodejs.org
You can check it in your terminal window using these commands node --version and npm --version.
GulpJS is a toolkit for automating painful or time-consuming tasks in your development workflow, so you can stop messing around and build something.
Navigate to the root main/directory,default
Then use $ npm i command (install node js)
$ gulp command (for run project)
NPM use the package.json file and automatically install the required local dependencies listed in it.
dependencies are : gulp, browser-sync, gulp-autoprefixer, gulp-livereload, gulp-pug, gulp-sass, livereload
We have added all necessary gulp task in gulpfile.js, for more details about plugin refer this link https://gulpjs.com/plugins/
Your project name"pug files are comiled using gulp
The pug task is as per below where we can set output path set from this .pipe(gulp.dest('main/')) statement
gulp.task('pug', function () {
return gulp.src('main/assets/pug/pages/**/*.pug')
.pipe(pug({ pretty: true }))
.on('error', console.error.bind(console))
.pipe(gulp.dest('main/'))
.pipe(bs.reload({stream: true}));
});