Skip to content

Folder structure

Giordano Cardillo edited this page Feb 15, 2018 · 1 revision
node-adminlte-boilerplate
   ├── .babelrc
   ├── .editorconfig
   ├── .eslintrc.js
   ├── .gitignore
   ├── LICENSE
   ├── package.json
   ├── README.md
   ├── webpack.config.js
   ├── yarn.lock
   ├── public
   │   ├── favicon.ico
   │   ├── index.html
   │   └── images
   │       └── icon.png
   └── src
       ├── entry.js
       ├── javascripts
       │   ├── router.js
       │   ├── lib
       │   │   └── jquery-jvectormap-world-mill-en.js
       │   └── routes
       │       ├── index.js
       │       └── not-found.js
       ├── stylesheets
       │   ├── entry.less
       │   ├── global.less
       │   ├── variables.less
       │   ├── lib
       │   │   ├── bootstrap.less
       │   │   └── datepicker.less
       │   └── routes
       │       ├── dashboard-1.less
       │       └── not-found.less
       └── templates
           ├── index.hbs
           ├── contents
           │   ├── dashboard-1.hbs
           │   └── not-found.hbs
           ├── helpers
           │   ├── dynamicContent.js
           │   ├── eq.js
           │   └── toId.js
           └── partials
               ├── content-header.hbs
               ├── control-sidebar.hbs
               ├── footer.hbs
               ├── header.hbs
               └── sidebar.hbs
Clone this wiki locally