Folder structure

Src Folder Structure

Below is the Convex Admin Template folder structure.

Convex Admin Folder Structure


convex-html/
├── app-assets/
|   ├── css/
|   ├── data/
|   ├── fonts/
|   ├── img/
|   ├── js/
|   └── vendors/
|       ├── css/
|       ├── js/
├── assets/
|   ├── css/
|   ├── js/
|   └── scss/
├── gulp-tasks/
├── src/
|   ├── js/
|   └── scss/
├── gulpfile.js (gulp tasks)
├── README.md
├── CHANGELOG.md
└── package.json (gulp package json)
            
  • convex-html/ : Root template folder contain Convex Admin Template all html, pug, js, css, scss, images and other files.
    • app-assets/ : Folder contain all the Convex Admin Template assets which has css, js, fonts, images & json files. It is not recommend you to change any files from this folder.
      • css/ : All the generated css files from scss. Which contain bootstrap.css, bootstrap-extended.css, app.css, colors.css, code, pages and plugins css files.
      • data/ : Dummy JSON data for chats, tables and ajax example.
      • fonts/ : All the fonts files for font-icons.
      • img/ : Template images for image placeholder.
      • js/ : All the generated JS files from src/js.
      • vendors/ : Folder contain all the vendors css and js files in css/ and js/ folder.
    • assets/ : Folder contain assets which has sample scss, css, js files. Convex admin provides this folder for user customization purpose, you can add any custom files in this folder.
    • gulp-tasks/ : Folder contain all the gulp task files.
    • src/ : Folder contain source files for this template i.e SCSS, JS.
      • js/ : Folder contain all the core, menu, pages & other js files.
      • scss/ : Folder contain bootstrap, bootstrap-extended, app, colors, pages & plugins scss files.
    • gulpfile.js : Gulp tasks js file.
    • README.md : File contain file contains information about convex admin usage.
    • CHANGELOG.md :All notable changes made to the convex admin template.
    • package.json : Gulp package json file.