Imbue Classy Coming Soon and Landing Page Template Documentation
by:
mix_design
version: 2.0.0
created: 29.01.2019
last update: 08.08.2022
01
Thank you for choosing Imbue - classy coming soon and landing page HTML template. We have prepared detailed documentation to make Imbue customization an easy task for you. If you have any questions that are beyond the scope of this help file, you can email us on support@mixdesign.club.
We would be very happy if you could rate this item here with 5 stars. Your feedback is very important so write us a line ! :)
02
Follow the steps below to setup your site template:
In order to start working with Imbue unzip the downloaded package and open HTML folder to find all ready-to-use template files. Choose one of the demo *.html files (any ready-to-use demo you like) and rename it to index.html.
Next you’ll need to prepare a project for customization. Below is a list of files and folders that are required in the root directory of your project:
index.html - your chosen *.html file (renamed already);css folder - stylesheet files;js folder - JavaScript files;fonts folder - icon and lining nums fonts files;img folder for project images and favicon;video folder - project video files;mail.php file for sending e-mails;.htaccess - this file contain rules for files caching on web server;The other files can be used according to your preferences.
Your project is ready to go! Now you can start adding your texts, images and video to your new awesome website.
After the customization is over, you’ll need to upload the project files to your hosting web server using FTP client or cPanel interface in order to use it on your website.
03
After downloading and extracting template package you will find 3 folders:
This section describes
HTML
folder structure. More about
ImbueGULP
folder structure you can find out in
ImbueGULP
section.
Imbue is one page HTML template. So, mostly you will need one
*.html
file and supporting
*.css,
*.js,
*.php
files with some images. All the directories and files are well organized as it shown on the image bellow.
source-files folder contains all expanded CSS files, expanded JavaScript files, plugins and components files;mail.php file for sending e-mails is located in the root directory;.htaccess file is located in the root directory. This file contain rules for files caching on web server.Imbue is one page HTML template and comes with 20 ready-to-use demo pages and 3 color variations:
Imbue has a simple and easy to customize structure based on Bootstrap 5 Grid. Here is a sample page structure:
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
Meta tags, Title, Favicon and Icons, Facebook Metadata, CSS, Custom Browser Color
</head>
<body class="split light-skin">
<!-- Old Browsers Support Start -->
...
<!-- Old Browsers Support End -->
<!-- Loader Start -->
<div class="loader">
...
</div>
<!-- Loader End -->
<!-- Navigation Start -->
<nav id="menu" class="menu">
...
</nav>
<!-- Navigation End -->
<!-- Main Section Start -->
<section id="main" class="main">
...
</section>
<!-- Main Section End -->
<!-- About Section Start -->
<section id="about" class="inner about">
...
</section>
<!-- About Section End -->
<!-- Portfolio & Team Section Start -->
<section id="portfolio" class="inner portfolio">
...
</section>
<!-- Portfolio & Team Section End -->
<!-- Contact Section Start -->
<section id="contact" class="inner contact">
...
</section>
<!-- Contact Section End -->
<!-- Root element of PhotoSwipe. Must have class pswp. -->
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
...
</div>
<!-- Load Scripts Start -->
...
<!-- Load Scripts End -->
</body>
</html>
Imbue template CSS files have a well-organized structure and a table of contents, as you can see on image below:
All CSS files are placed in
css
folder and have to be included in the
<head>
tag.
Imbue uses uncompressed CSS files.
If you want to improve Google PageSpeed Insights performance, you can use minificated files from
source-files → imbue-css-min-files.
<!-- Template Styles Start-->
<link rel="stylesheet" type="text/css" href="css/loaders/loader-*.css">
<link rel="stylesheet" type="text/css" href="css/plugins.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- Template Styles End-->
CSS files that have to be included in chosen .html file:
loader-*.css
plugins.css
main.css
If you want to customize CSS styles, We recommend to create your own
custom.css
file and include it to
Template Styles
section of the
HTML
file. This solution will help you in future updates.
* - Color skin number or name
All JavaScript files are placed in
js
folder and have to be included before the
</body>
tag.
libs.min.js - all JavaScript libraries that are necessary for Imbue proper work, are сompiled in this file;gallery-init.js - for photoswipe gallery initialization;custom.js - includes other scripts calls and settings;
<!-- Load Scripts Start-->
<script src="js/libs.min.js"></script>
<script src="js/gallery-init.js"></script>
<script src="js/custom.js"></script>
<!-- Load Scripts End-->
We used minificated
libs.min.js
file to add all necessary JavaScript libraries to this template. The file contains:
All this uncompressed files you can find in the source-files folder.
04
In Imbue template we used Cormorant Garamond Font, Raleway Font ,Fontawesome Free Iconic Font and Ionicons 2.0.1 Iconic Font.
In the Imbue template we used two fonts:
This fonts are embedded in the
main.css
file via
@font-face
rule:
/* ------------------------------------------------*/
/* Fonts Start */
/* ------------------------------------------------*/
@font-face {
font-family: "CormorantGaramond";
font-style: italic;
font-weight: 400;
src: url("../fonts/CormorantGaramond-Italic/CormorantGaramond-Italic-LiningNums.eot?#iefix") format("embedded-opentype"),
url("../fonts/CormorantGaramond-Italic/CormorantGaramond-Italic-LiningNums.woff2") format("woff2"),
url("../fonts/CormorantGaramond-Italic/CormorantGaramond-Italic-LiningNums.woff") format("woff"),
url("../fonts/CormorantGaramond-Italic/CormorantGaramond-Italic-LiningNums.ttf") format("truetype"),
url("../fonts/CormorantGaramond-Italic/CormorantGaramond-Italic-LiningNums.svg#CormorantGaramond") format("svg");
}
...
/* ------------------------------------------------*/
/* Fonts End */
/* ------------------------------------------------*/
You can customize embedded fonts or embed another fonts for your project in the
Fonts
section of the
main.css
file.
Imbue uses free version of FontAwesome 6.0.0 iconic font. You can use fontawesome.com/icons page to easily find the icon you want to use. Solid, regular and brands icons are already compiled in the plugins.css file and ready for use.
To change icons, just change the class names: fa-solid fa-heart, fa-brands fa-instagram, fa-regular fa-address-book.
<li>
<a href="https://www.facebook.com/" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
</li>More information about FontAwesome you can find on official documentation website - FontAwesome Docs.
Imbue uses Ionicons 2.0.1 iconic font. You can use ionicons/v2/cheatsheet page to easily find the icon you want to use. The font is already compiled in the plugins.css file and ready for use.
To change icons, just change the class names: ion-ionic, ion-arrow-up, ion-arrow-resize.
<li>
<a href="https://www.facebook.com/" target="_blank">
<i class="icon ion-social-facebook"></i>
</a>
</li>More information about Ionicons you can find on official website.
05
Imbue covers almost all platforms design requirements for favicon and icons:
Classic favicon:
<link rel="icon" href="img/favicon/favicon.ico" sizes="any">
Android Web App Manifest & Apple Touch Icon:
<link rel="apple-touch-icon" href="img/favicon/apple-touch-icon.png">
<link rel="manifest" href="img/favicon/manifest.webmanifest">
Universal SVG Icon for All Sizes ang Dark & Light Browser Color Themes:
<link rel="icon" href="img/favicon/icon.svg" type="image/svg+xml">
Facebook Metadata:
<meta property="og:image:height" content="1200">
<meta property="og:image:width" content="1200">
<meta property="og:title" content="Imbue - Classy Coming Soon and Landing Page Template">
<meta property="og:description" content="Imbue - versatile and beautifully designed coming soon and landing page HTML template. Elegant fonts, smooth transitions,
unique layout and much more - Imbue template has all you need to be noticed by everyone!">
<meta property="og:url" content="http://mixdesign.club/themeforest/imbue/">
<meta property="og:image" content="http://mixdesign.club/themeforest/imbue/favicon/og-image.jpg">
You can use Imbue favicon as an example or generate new one with Favicon Generator or any other favicon generator by your needs.
06
Imbue template comes with easy-to-customize page elements. You can choose from 20 redy-to-use demo files, 2 countdown types, 3 colors, various backgrounds and much more.
Loader will hide contents of your site until it's fully loaded.

If you want to customize or remove loader, find this code in *.html file:
<!-- Loader Start -->
<div class="loader">
<div class="loader-content">
<div class="loader-logo fadeIn">
<!-- Your Logo Here -->
<img src="img/logo-loader.svg" alt="Imbue - Classy Coming Soon & Landing Page Template">
</div>
</div>
</div>
<!-- Loader End -->Loader styles are included in the <head> tag:
<!-- Template Styles Start-->
<link rel="stylesheet" type="text/css" href="css/loaders/loader-*.css">
...
<!-- Template Styles End-->* - color skin number
Imbue template provides 3 color skins and 20 ready-to-use demo pages. All colors are compiled in the main.css file. You can change element's colors by using dark and light classes.
More beauriful color skins are coming soon in the next update!
The logo container is located in the main section of the template - section class="main".

<!-- Main Section Start -->
<section id="main" class="main">
<!-- Logo Start -->
<div class="logo">
<!-- Your Logo Here!!! -->
<img src="img/logo-white.svg" alt="Imbue - Classy Coming Soon & Landing Page Template">
</div>
<!-- Logo End -->
...
</section>
<!-- Main Section End -->You can use SVG, PNG or JPG image for logo. If you are using SVG, create PNG fallback image for old browsers. It'll be replaced automatically if needed.
All images used in the Imbue template live demo are just for preview purpose only and they are not included in main download files. You easily can find all images on unsplash.com or pexels.com. We are using placeholders from placeholder.com instead of real images. You can easily replace placeholder URL with a path to your image like img/yourimage.jpg.
All tmplate background images you can replace in the main.css file:
/* ------------------------------------------------*/
/* Template Backgrounds Start */
/* ------------------------------------------------*/
.swiper-image-1 {
background-image: url("http://via.placeholder.com/1000x1200");
}
...
/* ------------------------------------------------*/
/* Template Backgrounds End */
/* ------------------------------------------------*/Imbue template comes with two beautifully designed layouts with various animated backgrounds. Backgrouds settings you can find in the Plugins and Animated Backgrounds sections of this file.
1. Split layout with 2 countdown types and various backgrounds. Beautifully designed split layout with middle size headline, slider and animated backgrounds. Represent your best works on the first screen! Slider settings you can find in the Slider section of this file. Animated backgrounds settings you can find in Animated Backgrounds section of this file.

Replace this headline demo text with your own:
<!-- Headline Start -->
<div id="headline" class="headline">
<span class="headline__subtitle">Let’s meet</span>
<h1 class="light">New start is coming</h1>
<p class="headline__text light">Our website is under construction, but we are ready to go! We are preparing something amazing and exciting for you. Special surprise for our subscribers only</p>
<div class="headline__btnholder">
<a href="#" id="notify-trigger" class="btn btn-dark">
<span class="btn-background">
<span class="btn-caption">Notify me</span>
</span>
</a>
</div>
</div>
<!-- Headline End -->2. Fullscreen layout with medium headline and various backgrounds. Animated backgrounds settings you can find in Animated Backgrounds section of this file.

Replace this headline demo text with your own:
<!-- Headline Start -->
<div id="headline" class="headline centered-mobile">
<span class="headline__subtitle">Let’s meet</span>
<h1 class="light">New start is coming</h1>
<p class="headline__text light">Our website is under construction, but we are ready to go! We are preparing something amazing and exciting for you. Special surprise for our subscribers only</p>
<div class="headline__btnholder">
<a href="#" id="notify-trigger" class="btn btn-light-outline">
<span class="btn-background">
<span class="btn-caption">Notify me</span>
</span>
</a>
</div>
</div>
<!-- Headline End -->Imbue template comes with main section aside block located on the top of the page on mobile and left on desktop:

<!-- Main Section Aside Start -->
<aside class="main__aside bottom-mobile">
<div class="aside__content">
<!-- Socials Start -->
<div class="socials light">
<ul>
<li>
<a href="https://www.facebook.com/" target="_blank">Facebook</a>
</li>
<li>
<a href="https://www.instagram.com/" target="_blank">Instagram</a>
</li>
</ul>
</div>
<!-- Socials End -->
</div>
</aside>
<!-- Main Section Aside End -->07
Imbue template comes with two countdown types - full countdown and days only countdown. You can choose the one you like!
#countdown
#countdown-large
Imbue template comes with KBW Countdown Plugin. This plugin can be tricky to set up, but it is very flexible and has a lot of features.
For more details you can see documentation reference page: keith-wood.name/countdownRef.html or see a minimal page with basic settings: keith-wood.name/countdownBasics.html. In our case we are using UTCDate function. (You can also find this function in documentation reference page):
$.countdown.UTCDate(tz, year, month, day, hours, mins, secs, ms)
tz
- timezone offset, either in hours or minutes, from GMT, for example, Brisbane, Australia, would be +10 or +600;
year
- local year;
month
- local month (0 to 11);
day
- local day in the month;
hours
- local hour;
mins
- local minute;
secs
- local second;
ms
- local millisecond.
So here: countdown.UTCDate(10, 2022, 11, 22)
Find the Load Scripts section at the end of <body> and make sure that all the necessary js files are added in the following order:
<!-- Load Scripts Start-->
<script src="js/libs.min.js"></script>
...
<script src="js/custom.js"></script>
...
<!-- Load Scripts End-->
Setting your own date for countdown script can be done in custom.js file in js folder:
$('#countdown').countdown({until: $.countdown.UTCDate(+10, 2022, 12, 9), format: 'D'});
Visit KBW Countdown site for more details and settings - keith-wood.name/countdown.html
Imbue uses Swiper Slider Plugin for:
Homescreen layout flip slider
It's a half-screen slider with captions and a flip effect:
<!-- Main Section Swiper Slider Start -->
<!-- Slider main container -->
<div class="swiper-2">
<!-- Additional required wrapper -->
<div class="swiper-wrapper">
<!-- Slides -->
<!-- slide single -->
<div class="swiper-slide">
<div class="slide-image swiper-image-1">
<div class="color-layer gradient-black-onethird"></div>
</div>
<div class="slide-caption" data-swiper-parallax="150" data-swiper-parallax-opacity="0.5">
<p>E-commerce shop design</p>
<span>Case study</span>
</div>
</div>
...
</div>
</div>
<!-- Navigation buttons -->
<div class="swiper-button-prev main-swiper-controls main-prev dark"><span>prew</span></div>
<div class="swiper-button-next main-swiper-controls main-next dark"><span>next</span></div>
<!-- Main Section Swiper Slider End -->
All slides background images you can replace in the main.css file:
/* ------------------------------------------------*/
/* Template Backgrounds Start */
/* ------------------------------------------------*/
...
.swiper-image-1 {
background-image: url("http://via.placeholder.com/1200x1200");
}
...
/* ------------------------------------------------*/
/* Template Backgrounds End */
/* ------------------------------------------------*/
Find the Load Scripts section at the end of <body> and make sure that all the necessary js files are added in the following order:
<!-- Load Scripts Start -->
<script src="js/libs.min.js"></script>
...
<script src="js/custom.js"></script>
...
<!-- Load Scripts End -->
If you want to change this slider settings, find the
custom.js
file in
js
folder and make the necessary changes to the swiper init lines:
if (flipSlider.length) {
var swiper = new Swiper('.swiper-2', {
grabCursor: true,
effect: "flip",
speed: 1300,
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
});
};
Homescreen layout slide slider
It's a half-screen slider with captions and a slide effect:
<!-- Main Section Swiper Slider Start -->
<!-- Slider main container -->
<div class="swiper">
<!-- Additional required wrapper -->
<div class="swiper-wrapper">
<!-- Slides -->
<!-- slide single -->
<div class="swiper-slide">
<div class="slide-image swiper-image-1">
<div class="color-layer gradient-black-onethird"></div>
</div>
<div class="slide-caption" data-swiper-parallax="150" data-swiper-parallax-opacity="0.5">
<p>E-commerce shop design</p>
<span>Case study</span>
</div>
</div>
...
</div>
</div>
<!-- Navigation buttons -->
<div class="swiper-button-prev main-swiper-controls main-prev dark"><span>prew</span></div>
<div class="swiper-button-next main-swiper-controls main-next dark"><span>next</span></div>
<!-- Main Section Swiper Slider End -->
All slides background images you can replace in the main.css file:
/* ------------------------------------------------*/
/* Template Backgrounds Start */
/* ------------------------------------------------*/
...
.swiper-image-1 {
background-image: url("http://via.placeholder.com/1200x1200");
}
...
/* ------------------------------------------------*/
/* Template Backgrounds End */
/* ------------------------------------------------*/
Find the Load Scripts section at the end of <body> and make sure that all the necessary js files are added in the following order:
<!-- Load Scripts Start -->
<script src="js/libs.min.js"></script>
...
<script src="js/custom.js"></script>
...
<!-- Load Scripts End -->
If you want to change this slider settings, find the
custom.js
file in
js
folder and make the necessary changes to the swiper init lines:
if (mainSlider.length) {
var swiper = new Swiper('.swiper', {
grabCursor: true,
effect: "creative",
creativeEffect: {
prev: {
translate: ["-20%", 0, -1],
},
next: {
translate: ["100%", 0, 0],
},
},
parallax: true,
speed: 1300,
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
});
};
More information about Swiper settings you can find in the official documentation - swiperjs.com/get-started
Imbue uses jQuery CSS Skills Bar Plugin to show he skill set.

You can change percent parameter in the HTML file:
<!-- Skillbar single item -->
<div class="show-skillbar">
<div class="skillbar" data-percent="96">
<span class="skillbar-title">Design</span>
<p class="skillbar-bar"></p>
<span class="skill-bar-percent"></span>
</div>
</div>All other parameters you can change in custom.js file:
§('.skillbar').skillBars({
from: 0,
speed: 4000,
interval: 100,
});See jQuery CSS Skills Bar Plugin page for more settings.
Portfolio gallery is made using PhotoSwipe JavaScript Gallery.

This is an example for one portfolio item, just duplicate it to add new pictures or fill it with your content:
<!-- gallery single item -->
<figure class="col-12 col-sm-6 my-gallery__item" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="http://via.placeholder.com/900x1200" data-image="http://via.placeholder.com/900x1200" class="my-gallery__link" itemprop="contentUrl" data-size="900x1200">
<img src="http://via.placeholder.com/900x1200" class="my-gallery__image" itemprop="thumbnail" alt="Image description" />
</a>
<figcaption class="my-gallery__description" itemprop="caption description">
<h4>
Fashion
<small>Just stylish</small>
</h4>
<p>Mauris porttitor lobortis ligula, quis molestie lorem scelerisque eu. Morbi aliquam enim odio, a mollis ipsum tristique eu.</p>
</figcaption>
</figure>
JavaScript files that have to be included:
<!-- Load Scripts Start-->
<script src="js/libs.min.js"></script>
<script src="js/gallery-init.js"></script>
...
<!-- Load Scripts End-->More information about PhotoSwipe Gallery you can find in PhotoSwipe Documentation.
08
All backgrounds CSS styles are сompiled in plugins.css file so you don't need to add any CSS files.
This background effect is based on the Particles.js plugin.
Make sure you have <div id="particles-js"> in *.html file:
<!-- Background Effect Start-->
<div id="particles-js"></div>
<!-- Background Effect End-->Find the Load Scripts section at the end of <body>and make sure that all the necessary js files are added in the following order:
<!-- Load Scripts Start-->
<script src="js/libs.min.js"></script>
...
<script src="js/custom.js"></script>
<!-- Load Scripts End-->Done! More information about particles.js configuration you can find on official website.
This background effect is based on the Particles.js plugin.
Make sure you have <div id="snow-js"> in *.html file:
<!-- Background Effect Start-->
<div id="snow-js"></div>
<!-- Background Effect End-->Find the Load Scripts section at the end of <body>and make sure that all the necessary js files are added in the following order:
<!-- Load Scripts Start-->
<script src="js/libs.min.js"></script>
...
<script src="js/custom.js"></script>
<!-- Load Scripts End-->Done! More information about particles.js configuration you can find on official website.
This background effect is based on the Particles.js plugin.
Make sure you have <div id="nightsky-js"> in *.html file:
<!-- Background Effect Start-->
<div id="nightsky-js"></div>
<!-- Background Effect End-->Find the Load Scripts section at the end of <body>and make sure that all the necessary js files are added in the following order:
<!-- Load Scripts Start-->
<script src="js/libs.min.js"></script>
...
<script src="js/custom.js"></script>
<!-- Load Scripts End-->Done! More information about particles.js configuration you can find on official website.
To provide this effect we use Vegas jQuery Plugin . Make sure you have <div id="bgndKenburns"> or <div id="bgndKenburnsFull"> in *.html file:
<!-- Background Effects Start -->
<div id="bgndKenburns"></div>
<!-- Background Effects End -->Find the Load Scripts section at the end of <body> and make sure that all the necessary js files are added in the following order:
<!-- Load Scripts Start-->
<script src="js/libs.min.js"></script>
...
<script src="js/custom.js"></script>
...
<!-- Load Scripts End-->To replace or add images to the slideshow, find the custom.js file in js folder and make the necessary changes to the slides array:
$('#bgndKenburns').vegas({
...
slides: [
{ src: '../img/example-slide-1.jpg' },
{ src: '../img/example-slide-2.jpg' },
{ src: '../img/example-slide-3.jpg' }
],
...
});More information about Vegas settings you can find in the official documentation - vegas.jaysalvat.com/documentation
To provide this effect we use YTPlayer jQuery Plugin. Make sure you have <div id="bgndVideo"> with class player in *.html file:
<!-- Background Effect Start -->
<div class="video-background">
<div class="" id="video-wrapper">
<div id="bgndVideo" class="player" data-property="{ videoURL:'https://youtu.be/BsafeSHN_II', }"></div>
</div>
</div>
<!-- Background Effect End -->Find the Load Scripts section at the end of <body>and make sure that all the necessary js files are added in the following order:
<!-- Load Scripts Start-->
<script type="text/javascript" src="js/libs.min.js"></script>
...
<script type="text/javascript" src="js/custom.js"></script>
...
<!-- Load Scripts End-->If you want to change background video, find the data-property attribute in <div id="bgndVideo"> and replace videoURL property.
More information about YTPlayer settings you can find in the official documentation.
09
Imbue template is provided with 2 form types:
This active subscribe form will save e-mails to Mailchimp list.

<!-- Notify Contact Form Start-->
<form class="form notify-form form-dark">
<input class="" type="email" placeholder="Email Adress*" required>
<span class="inputs-description">*Required fields</span>
<button class="btn btn-light" type="submit">
<span class="btn-background">
<span class="btn-caption">Send</span>
</span>
</button>
</form>
<!-- Notify Contact Form End-->JavaScript files that have to be included:
<!-- Load Scripts Start-->
<script src="js/libs.min.js"></script>
...
<script src="js/custom.js"></script>
...
<!-- Load Scripts End-->Follow these steps to get Mailchimp list URL:
Audience section.




https:// if it is not included with MailChimp list URL.Open custom.js file from js folder. Just replace our Mailchimp form action URL with your Mailchimp list URL:
$('.notify-form').ajaxChimp({
callback: mailchimpCallback,
// Replace this Mailchimp form action URL with your Mailchimp list URL
url: 'https://besaba.us10.list-manage.com/subscribe/post?u=e8d650c0df90e716c22ae4778&id=54a7906900'
});Done! Now you can save emails to your MailChimp Audience List!
Imbue template has integrated ajax contact form.

It's very easy to set up this forms to receive feedback on your e-mail:
mail.php file is added to the root directory of your project.<form> tag with id="writealine-form" in the *.html file. <!-- Write a Line Form Start -->
<form class="form writealine-form form-dark" id="writealine-form">
<!-- Hidden Required Fields -->
<input type="hidden" name="project_name" value="Imbue - Classy Coming Soon and Landing Page Template">
<input type="hidden" name="admin_email" value="support@mixdesign.club">
<input type="hidden" name="form_subject" value="Write a Line Form Message">
<!-- END Hidden Required Fields-->
...
</form>
<!-- Write a Line Form End -->JavaScript files that have to be included:
<!-- Load Scripts Start-->
<script src="js/libs.min.js"></script>
...
<script src="js/custom.js"></script>
...
<!-- Load Scripts End-->Done! Now you can receive messages on your e-mail.
10
If you want to totally customize Imbue, you can use our all-inclusive ImbueGULP template. ImbueGULP includes Bootstrap 5 Grid, Gulp, Sass, Bourbon, Autoprefixer, Browsersync, Clean-CSS, CSS Beautify, Uglify, and other packages for efficient and comfortable work.
ImbueGULP requires node, npm and git.
Install Node Modules: npm i
Run ImbueGULP: gulp
app directory;sass directory;dist folder is a production folder. It contains ready project with optimized HTML, CSS, JS and images.gulp: run default gulp task for web development;
build: build project to dist folder;
clearcache: clear all gulp cache.
If you have any questions about ImbueGULP, you can email us on support@mixdesign.club.
11
12