The Cork Admin template offers two installation approaches, depending on whether or not you want to use build tools like Gulp and Sass. Choose the option that best fits your development workflow.
(For users not using Gulp or Sass)
If you prefer a straightforward setup without compiling assets or working with SCSS, you can begin using the admin dashboard immediately.
1 - Download and extract the template package.
2 - Copy the /html/ folder to your local server directory (e.g., htdocs, www, or any project folder).
3 - Open any HTML file in your browser to start using the admin dashboard.
(For developers using Gulp and Sass)
This method is recommended if you plan to work with SCSS, modular JavaScript, or want access to automated build tools.
Download and install the latest version of Node.js from https://nodejs.org
Unzip the package and move it to your preferred development directory.
Navigate to the root folder of the admin template. You may use:
default layout folderExample:
HTML
cd html/layouts/vertical-dark-menu
Run the following command to install all required Node modules:
Bash
npm install
Bash
npm install --global gulp
Mac/Linux users should prefix with sudo:.
Bash
sudo npm install --global gulp
Run the test command to ensure everything is working:
Bash
gulp hello
To compile Sass into CSS, use the following commands:
Download and install the latest version of Node.js from https://nodejs.org
Unzip the package and move it to your preferred development directory.
vlm - Vertical Light Menumlm - Modern Light MenuExample :
Bash
gulp vlm:sass:assets
Use Gulp’s watch command to enable live preview and auto-compilation:
Bash
gulp watch:vdm
This will:
Replace vdm with vlm or mlm depending on the layout you're working with.
To compile Sass into CSS, use the following commands:
If you encounter this error:
Bash
Error: ENOENT: no such file or directory in node-sass
Run :
Bash
npm rebuild
If the issue persists:
Bash
npm rebuild --force
Still stuck? Feel free to contact our Support Team for assistance.
If you prefer using Git: