实例介绍
AngularJS、静态HTML5、角材料、Visual Studio + MVC5、Ruby on Rails、MeanJS、MeteorJS、MVC6 + ASP.NET Core、 ReactJS
【实例截图】
【核心代码】
17748476-e1ce-4838-bb4b-1310c46792a8
├── angular5
│ └── ng2angle
│ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ ├── karma.conf.js
│ ├── modernizr-config.json
│ ├── package.json
│ ├── package-lock.json
│ ├── protractor.conf.js
│ ├── README.md
│ ├── src
│ │ ├── app
│ │ │ ├── app.component.html
│ │ │ ├── app.component.scss
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── core
│ │ │ │ ├── core.module.ts
│ │ │ │ ├── menu
│ │ │ │ │ ├── menu.service.spec.ts
│ │ │ │ │ └── menu.service.ts
│ │ │ │ ├── module-import-guard.ts
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.component.html
│ │ │ │ │ ├── preloader.js
│ │ │ │ │ └── preloader.scss
│ │ │ │ ├── settings
│ │ │ │ │ ├── settings.service.spec.ts
│ │ │ │ │ └── settings.service.ts
│ │ │ │ ├── themes
│ │ │ │ │ ├── themes.service.spec.ts
│ │ │ │ │ └── themes.service.ts
│ │ │ │ └── translator
│ │ │ │ ├── translator.service.spec.ts
│ │ │ │ └── translator.service.ts
│ │ │ ├── index.ts
│ │ │ ├── layout
│ │ │ │ ├── footer
│ │ │ │ │ ├── footer.component.html
│ │ │ │ │ ├── footer.component.scss
│ │ │ │ │ ├── footer.component.spec.ts
│ │ │ │ │ └── footer.component.ts
│ │ │ │ ├── header
│ │ │ │ │ ├── header.component.h.html
│ │ │ │ │ ├── header.component.html
│ │ │ │ │ ├── header.component.scss
│ │ │ │ │ ├── header.component.spec.ts
│ │ │ │ │ ├── header.component.ts
│ │ │ │ │ └── navsearch
│ │ │ │ │ ├── navsearch.component.html
│ │ │ │ │ ├── navsearch.component.scss
│ │ │ │ │ ├── navsearch.component.spec.ts
│ │ │ │ │ └── navsearch.component.ts
│ │ │ │ ├── layout.component.h.html
│ │ │ │ ├── layout.component.html
│ │ │ │ ├── layout.component.scss
│ │ │ │ ├── layout.component.spec.ts
│ │ │ │ ├── layout.component.ts
│ │ │ │ ├── layout.module.ts
│ │ │ │ ├── offsidebar
│ │ │ │ │ ├── offsidebar.component.html
│ │ │ │ │ ├── offsidebar.component.scss
│ │ │ │ │ ├── offsidebar.component.spec.ts
│ │ │ │ │ └── offsidebar.component.ts
│ │ │ │ └── sidebar
│ │ │ │ ├── sidebar.component.html
│ │ │ │ ├── sidebar.component.scss
│ │ │ │ ├── sidebar.component.spec.ts
│ │ │ │ ├── sidebar.component.ts
│ │ │ │ └── userblock
│ │ │ │ ├── userblock.component.html
│ │ │ │ ├── userblock.component.scss
│ │ │ │ ├── userblock.component.spec.ts
│ │ │ │ ├── userblock.component.ts
│ │ │ │ ├── userblock.service.spec.ts
│ │ │ │ └── userblock.service.ts
│ │ │ ├── routes
│ │ │ │ ├── blog
│ │ │ │ │ ├── articles
│ │ │ │ │ │ ├── articles.component.html
│ │ │ │ │ │ ├── articles.component.scss
│ │ │ │ │ │ └── articles.component.ts
│ │ │ │ │ ├── articleview
│ │ │ │ │ │ ├── articleview.component.html
│ │ │ │ │ │ ├── articleview.component.scss
│ │ │ │ │ │ └── articleview.component.ts
│ │ │ │ │ ├── blog.module.ts
│ │ │ │ │ ├── list
│ │ │ │ │ │ ├── list.component.html
│ │ │ │ │ │ ├── list.component.scss
│ │ │ │ │ │ └── list.component.ts
│ │ │ │ │ └── post
│ │ │ │ │ ├── post.component.html
│ │ │ │ │ ├── post.component.scss
│ │ │ │ │ └── post.component.ts
│ │ │ │ ├── charts
│ │ │ │ │ ├── chartjs
│ │ │ │ │ │ ├── chartjs.component.html
│ │ │ │ │ │ ├── chartjs.component.scss
│ │ │ │ │ │ └── chartjs.component.ts
│ │ │ │ │ ├── charts.module.ts
│ │ │ │ │ ├── flot
│ │ │ │ │ │ ├── flot.component.html
│ │ │ │ │ │ ├── flot.component.scss
│ │ │ │ │ │ └── flot.component.ts
│ │ │ │ │ └── radial
│ │ │ │ │ ├── radial.component.html
│ │ │ │ │ ├── radial.component.scss
│ │ │ │ │ └── radial.component.ts
│ │ │ │ ├── dashboard
│ │ │ │ │ ├── dashboard.module.ts
│ │ │ │ │ ├── dashboardv1
│ │ │ │ │ │ ├── dashboardv1.component.html
│ │ │ │ │ │ ├── dashboardv1.component.scss
│ │ │ │ │ │ └── dashboardv1.component.ts
│ │ │ │ │ ├── dashboardv2
│ │ │ │ │ │ ├── dashboardv2.component.html
│ │ │ │ │ │ ├── dashboardv2.component.scss
│ │ │ │ │ │ └── dashboardv2.component.ts
│ │ │ │ │ └── dashboardv3
│ │ │ │ │ ├── dashboardv3.component.html
│ │ │ │ │ ├── dashboardv3.component.scss
│ │ │ │ │ └── dashboardv3.component.ts
│ │ │ │ ├── ecommerce
│ │ │ │ │ ├── checkout
│ │ │ │ │ │ ├── checkout.component.html
│ │ │ │ │ │ ├── checkout.component.scss
│ │ │ │ │ │ └── checkout.component.ts
│ │ │ │ │ ├── ecommerce.module.ts
│ │ │ │ │ ├── orders
│ │ │ │ │ │ ├── orders.component.html
│ │ │ │ │ │ ├── orders.component.scss
│ │ │ │ │ │ └── orders.component.ts
│ │ │ │ │ ├── orderview
│ │ │ │ │ │ ├── orderview.component.html
│ │ │ │ │ │ ├── orderview.component.scss
│ │ │ │ │ │ └── orderview.component.ts
│ │ │ │ │ ├── products
│ │ │ │ │ │ ├── products.component.html
│ │ │ │ │ │ ├── products.component.scss
│ │ │ │ │ │ └── products.component.ts
│ │ │ │ │ └── productview
│ │ │ │ │ ├── productview.component.html
│ │ │ │ │ ├── productview.component.scss
│ │ │ │ │ └── productview.component.ts
│ │ │ │ ├── elements
│ │ │ │ │ ├── buttons
│ │ │ │ │ │ ├── buttons.component.html
│ │ │ │ │ │ ├── buttons.component.scss
│ │ │ │ │ │ ├── buttons.component.spec.ts
│ │ │ │ │ │ └── buttons.component.ts
│ │ │ │ │ ├── colors
│ │ │ │ │ │ ├── colors.component.html
│ │ │ │ │ │ ├── colors.component.scss
│ │ │ │ │ │ ├── colors.component.spec.ts
│ │ │ │ │ │ └── colors.component.ts
│ │ │ │ │ ├── dropdown
│ │ │ │ │ │ ├── dropdown.component.html
│ │ │ │ │ │ ├── dropdown.component.scss
│ │ │ │ │ │ ├── dropdown.component.spec.ts
│ │ │ │ │ │ └── dropdown.component.ts
│ │ │ │ │ ├── elements.module.ts
│ │ │ │ │ ├── grid
│ │ │ │ │ │ ├── grid.component.html
│ │ │ │ │ │ ├── grid.component.scss
│ │ │ │ │ │ ├── grid.component.spec.ts
│ │ │ │ │ │ └── grid.component.ts
│ │ │ │ │ ├── gridmasonry
│ │ │ │ │ │ ├── gridmasonry.component.html
│ │ │ │ │ │ ├── gridmasonry.component.scss
│ │ │ │ │ │ ├── gridmasonry.component.spec.ts
│ │ │ │ │ │ └── gridmasonry.component.ts
│ │ │ │ │ ├── iconsfont
│ │ │ │ │ │ ├── iconsfont.component.html
│ │ │ │ │ │ ├── iconsfont.component.scss
│ │ │ │ │ │ ├── iconsfont.component.spec.ts
│ │ │ │ │ │ └── iconsfont.component.ts
│ │ │ │ │ ├── iconsweather
│ │ │ │ │ │ ├── iconsweather.component.html
│ │ │ │ │ │ ├── iconsweather.component.scss
│ │ │ │ │ │ ├── iconsweather.component.spec.ts
│ │ │ │ │ │ └── iconsweather.component.ts
│ │ │ │ │ ├── infinitescroll
│ │ │ │ │ │ ├── infinitescroll.component.html
│ │ │ │ │ │ ├── infinitescroll.component.scss
│ │ │ │ │ │ └── infinitescroll.component.ts
│ │ │ │ │ ├── interaction
│ │ │ │ │ │ ├── interaction.component.html
│ │ │ │ │ │ ├── interaction.component.scss
│ │ │ │ │ │ ├── interaction.component.spec.ts
│ │ │ │ │ │ └── interaction.component.ts
│ │ │ │ │ ├── navtree
│ │ │ │ │ │ ├── navtree.component.html
│ │ │ │ │ │ ├── navtree.component.scss
│ │ │ │ │ │ └── navtree.component.ts
│ │ │ │ │ ├── notification
│ │ │ │ │ │ ├── notification.component.html
│ │ │ │ │ │ ├── notification.component.scss
│ │ │ │ │ │ └── notification.component.ts
│ │ │ │ │ ├── sortable
│ │ │ │ │ │ ├── sortable.component.html
│ │ │ │ │ │ ├── sortable.component.scss
│ │ │ │ │ │ ├── sortable.component.ts
│ │ │ │ │ │ └── sortable.product.ts
│ │ │ │ │ ├── spinners
│ │ │ │ │ │ ├── spinners.component.html
│ │ │ │ │ │ ├── spinners.component.scss
│ │ │ │ │ │ ├── spinners.component.spec.ts
│ │ │ │ │ │ └── spinners.component.ts
│ │ │ │ │ ├── sweetalert
│ │ │ │ │ │ ├── sweetalert.component.html
│ │ │ │ │ │ ├── sweetalert.component.scss
│ │ │ │ │ │ ├── sweetalert.component.spec.ts
│ │ │ │ │ │ └── sweetalert.component.ts
│ │ │ │ │ └── typography
│ │ │ │ │ ├── typography.component.html
│ │ │ │ │ ├── typography.component.scss
│ │ │ │ │ ├── typography.component.spec.ts
│ │ │ │ │ └── typography.component.ts
│ │ │ │ ├── extras
│ │ │ │ │ ├── bugtracker
│ │ │ │ │ │ ├── bugtracker.component.html
│ │ │ │ │ │ ├── bugtracker.component.scss
│ │ │ │ │ │ └── bugtracker.component.ts
│ │ │ │ │ ├── calendar
│ │ │ │ │ │ ├── calendar.component.html
│ │ │ │ │ │ ├── calendar.component.scss
│ │ │ │ │ │ └── calendar.component.ts
│ │ │ │ │ ├── codeeditor
│ │ │ │ │ │ ├── codeeditor.component.html
│ │ │ │ │ │ ├── codeeditor.component.scss
│ │ │ │ │ │ └── codeeditor.component.ts
│ │ │ │ │ ├── contactdetails
│ │ │ │ │ │ ├── contactdetails.component.html
│ │ │ │ │ │ ├── contactdetails.component.scss
│ │ │ │ │ │ └── contactdetails.component.ts
│ │ │ │ │ ├── contacts
│ │ │ │ │ │ ├── contacts.component.html
│ │ │ │ │ │ ├── contacts.component.scss
│ │ │ │ │ │ └── contacts.component.ts
│ │ │ │ │ ├── extras.module.ts
│ │ │ │ │ ├── faq
│ │ │ │ │ │ ├── faq.component.html
│ │ │ │ │ │ ├── faq.component.scss
│ │ │ │ │ │ └── faq.component.ts
│ │ │ │ │ ├── filemanager
│ │ │ │ │ │ ├── filemanager.component.html
│ │ │ │ │ │ ├── filemanager.component.scss
│ │ │ │ │ │ └── filemanager.component.ts
│ │ │ │ │ ├── followers
│ │ │ │ │ │ ├── followers.component.html
│ │ │ │ │ │ ├── followers.component.scss
│ │ │ │ │ │ └── followers.component.ts
│ │ │ │ │ ├── forum
│ │ │ │ │ │ ├── forum.component.html
│ │ │ │ │ │ ├── forum.component.scss
│ │ │ │ │ │ ├── forum.component.ts
│ │ │ │ │ │ ├── forumdiscussion
│ │ │ │ │ │ │ ├── forumdiscussion.component.html
│ │ │ │ │ │ │ ├── forumdiscussion.component.scss
│ │ │ │ │ │ │ └── forumdiscussion.component.ts
│ │ │ │ │ │ └── forumtopics
│ │ │ │ │ │ ├── forumtopics.component.html
│ │ │ │ │ │ ├── forumtopics.component.scss
│ │ │ │ │ │ └── forumtopics.component.ts
│ │ │ │ │ ├── helpcenter
│ │ │ │ │ │ ├── helpcenter.component.html
│ │ │ │ │ │ ├── helpcenter.component.scss
│ │ │ │ │ │ └── helpcenter.component.ts
│ │ │ │ │ ├── invoice
│ │ │ │ │ │ ├── invoice.component.html
│ │ │ │ │ │ ├── invoice.component.scss
│ │ │ │ │ │ └── invoice.component.ts
│ │ │ │ │ ├── mailbox
│ │ │ │ │ │ ├── compose
│ │ │ │ │ │ │ ├── compose.component.html
│ │ │ │ │ │ │ ├── compose.component.scss
│ │ │ │ │ │ │ └── compose.component.ts
│ │ │ │ │ │ ├── folder
│ │ │ │ │ │ │ ├── folder.component.html
│ │ │ │ │ │ │ ├── folder.component.scss
│ │ │ │ │ │ │ └── folder.component.ts
│ │ │ │ │ │ ├── mailbox.component.html
│ │ │ │ │ │ ├── mailbox.component.scss
│ │ │ │ │ │ ├── mailbox.component.ts
│ │ │ │ │ │ └── view
│ │ │ │ │ │ ├── view.component.html
│ │ │ │ │ │ ├── view.component.scss
│ │ │ │ │ │ └── view.component.ts
│ │ │ │ │ ├── plans
│ │ │ │ │ │ ├── plans.component.html
│ │ │ │ │ │ ├── plans.component.scss
│ │ │ │ │ │ └── plans.component.ts
│ │ │ │ │ ├── profile
│ │ │ │ │ │ ├── profile.component.html
│ │ │ │ │ │ ├── profile.component.scss
│ │ │ │ │ │ └── profile.component.ts
│ │ │ │ │ ├── projects
│ │ │ │ │ │ ├── projects.component.html
│ │ │ │ │ │ ├── projects.component.scss
│ │ │ │ │ │ └── projects.component.ts
│ │ │ │ │ ├── projectsdetails
│ │ │ │ │ │ ├── projectsdetails.component.html
│ │ │ │ │ │ ├── projectsdetails.component.scss
│ │ │ │ │ │ └── projectsdetails.component.ts
│ │ │ │ │ ├── search
│ │ │ │ │ │ ├── search.component.html
│ │ │ │ │ │ ├── search.component.scss
│ │ │ │ │ │ └── search.component.ts
│ │ │ │ │ ├── settings
│ │ │ │ │ │ ├── settings.component.html
│ │ │ │ │ │ ├── settings.component.scss
│ │ │ │ │ │ └── settings.component.ts
│ │ │ │ │ ├── socialboard
│ │ │ │ │ │ ├── socialboard.component.html
│ │ │ │ │ │ ├── socialboard.component.scss
│ │ │ │ │ │ └── socialboard.component.ts
│ │ │ │ │ ├── teamviewer
│ │ │ │ │ │ ├── teamviewer.component.html
│ │ │ │ │ │ ├── teamviewer.component.scss
│ │ │ │ │ │ └── teamviewer.component.ts
│ │ │ │ │ ├── timeline
│ │ │ │ │ │ ├── timeline.component.html
│ │ │ │ │ │ ├── timeline.component.scss
│ │ │ │ │ │ └── timeline.component.ts
│ │ │ │ │ ├── todolist
│ │ │ │ │ │ ├── todolist.component.html
│ │ │ │ │ │ ├── todolist.component.scss
│ │ │ │ │ │ └── todolist.component.ts
│ │ │ │ │ └── votelinks
│ │ │ │ │ ├── votelinks.component.html
│ │ │ │ │ ├── votelinks.component.scss
│ │ │ │ │ └── votelinks.component.ts
│ │ │ │ ├── forms
│ │ │ │ │ ├── cropper
│ │ │ │ │ │ ├── cropper.component.html
│ │ │ │ │ │ ├── cropper.component.scss
│ │ │ │ │ │ └── cropper.component.ts
│ │ │ │ │ ├── extended
│ │ │ │ │ │ ├── extended.component.html
│ │ │ │ │ │ ├── extended.component.scss
│ │ │ │ │ │ └── extended.component.ts
│ │ │ │ │ ├── forms.module.ts
│ │ │ │ │ ├── standard
│ │ │ │ │ │ ├── standard.component.html
│ │ │ │ │ │ ├── standard.component.scss
│ │ │ │ │ │ └── standard.component.ts
│ │ │ │ │ ├── upload
│ │ │ │ │ │ ├── upload.component.html
│ │ │ │ │ │ ├── upload.component.scss
│ │ │ │ │ │ └── upload.component.ts
│ │ │ │ │ └── validation
│ │ │ │ │ ├── validation.component.html
│ │ │ │ │ ├── validation.component.scss
│ │ │ │ │ └── validation.component.ts
│ │ │ │ ├── home
│ │ │ │ │ ├── home
│ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ ├── home.component.spec.ts
│ │ │ │ │ │ └── home.component.ts
│ │ │ │ │ └── home.module.ts
│ │ │ │ ├── maps
│ │ │ │ │ │ ├── google.component.html
│ │ │ │ │ │ ├── google.component.scss
│ │ │ │ │ │ └── google.component.ts
│ │ │ │ │ ├── maps.module.ts
│ │ │ │ │ └── vector
│ │ │ │ │ ├── vector.component.html
│ │ │ │ │ ├── vector.component.scss
│ │ │ │ │ └── vector.component.ts
│ │ │ │ ├── menu.ts
│ │ │ │ ├── pages
│ │ │ │ │ ├── error404
│ │ │ │ │ │ ├── error404.component.html
│ │ │ │ │ │ ├── error404.component.scss
│ │ │ │ │ │ └── error404.component.ts
│ │ │ │ │ ├── error500
│ │ │ │ │ │ ├── error500.component.html
│ │ │ │ │ │ ├── error500.component.scss
│ │ │ │ │ │ └── error500.component.ts
│ │ │ │ │ ├── lock
│ │ │ │ │ │ ├── lock.component.html
│ │ │ │ │ │ ├── lock.component.scss
│ │ │ │ │ │ └── lock.component.ts
│ │ │ │ │ ├── login
│ │ │ │ │ │ ├── login.component.html
│ │ │ │ │ │ ├── login.component.scss
│ │ │ │ │ │ └── login.component.ts
│ │ │ │ │ ├── maintenance
│ │ │ │ │ │ ├── maintenance.component.html
│ │ │ │ │ │ ├── maintenance.component.scss
│ │ │ │ │ │ └── maintenance.component.ts
│ │ │ │ │ ├── pages.module.ts
│ │ │ │ │ ├── recover
│ │ │ │ │ │ ├── recover.component.html
│ │ │ │ │ │ ├── recover.component.scss
│ │ │ │ │ │ └── recover.component.ts
│ │ │ │ │ └── register
│ │ │ │ │ ├── register.component.html
│ │ │ │ │ ├── register.component.scss
│ │ │ │ │ └── register.component.ts
│ │ │ │ ├── routes.module.ts
│ │ │ │ ├── routes.ts
│ │ │ │ ├── tables
│ │ │ │ │ ├── angulargrid
│ │ │ │ │ │ ├── angulargrid.component.html
│ │ │ │ │ │ ├── angulargrid.component.scss
│ │ │ │ │ │ └── angulargrid.component.ts
│ │ │ │ │ ├── datatable
│ │ │ │ │ │ ├── datatable.component.html
│ │ │ │ │ │ ├── datatable.component.scss
│ │ │ │ │ │ ├── datatable.component.ts
│ │ │ │ │ │ └── ng2-table-data.ts
│ │ │ │ │ ├── extended
│ │ │ │ │ │ ├── extended.component.html
│ │ │ │ │ │ ├── extended.component.scss
│ │ │ │ │ │ └── extended.component.ts
│ │ │ │ │ ├── ngxdatatable
│ │ │ │ │ │ ├── ngxdatatable.component.html
│ │ │ │ │ │ ├── ngxdatatable.component.scss
│ │ │ │ │ │ └── ngxdatatable.component.ts
│ │ │ │ │ ├── standard
│ │ │ │ │ │ ├── standard.component.html
│ │ │ │ │ │ ├── standard.component.scss
│ │ │ │ │ │ └── standard.component.ts
│ │ │ │ │ └── tables.module.ts
│ │ │ │ └── widgets
│ │ │ │ ├── widgets
│ │ │ │ │ ├── widgets.component.html
│ │ │ │ │ ├── widgets.component.scss
│ │ │ │ │ └── widgets.component.ts
│ │ │ │ └── widgets.module.ts
│ │ │ └── shared
│ │ │ ├── colors
│ │ │ │ └── colors.service.ts
│ │ │ ├── directives
│ │ │ │ ├── checkall
│ │ │ │ │ └── checkall.directive.ts
│ │ │ │ ├── easypiechart
│ │ │ │ │ └── easypiechart.directive.ts
│ │ │ │ ├── flot
│ │ │ │ │ └── flot.directive.ts
│ │ │ │ ├── jqcloud
│ │ │ │ │ └── jqcloud.directive.ts
│ │ │ │ ├── now
│ │ │ │ │ └── now.directive.ts
│ │ │ │ ├── scrollable
│ │ │ │ │ └── scrollable.directive.ts
│ │ │ │ ├── sparkline
│ │ │ │ │ └── sparkline.directive.ts
│ │ │ │ └── vectormap
│ │ │ │ └── vectormap.directive.ts
│ │ │ ├── shared.module.ts
│ │ │ └── styles
│ │ │ ├── app
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── breadcrumbs.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── calendar.scss
│ │ │ │ ├── chart-easypie.scss
│ │ │ │ ├── chart-flot.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── code-editor.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── file-upload.scss
│ │ │ │ ├── form-elements.scss
│ │ │ │ ├── gmap.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── loading-bar.scss
│ │ │ │ ├── mailbox.scss
│ │ │ │ ├── masonry-grid.scss
│ │ │ │ ├── media-queries.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── panels.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── plans.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── progress-extra.scss
│ │ │ │ ├── radial-bar.scss
│ │ │ │ ├── row-extra.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── spinner.scss
│ │ │ │ ├── summernote.scss
│ │ │ │ ├── table-angulargrid.scss
│ │ │ │ ├── table-extras.scss
│ │ │ │ ├── table-grid.scss
│ │ │ │ ├── timeline.scss
│ │ │ │ ├── todo.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typeahead.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── user-block.scss
│ │ │ │ ├── utils-definitions.scss
│ │ │ │ ├── utils.scss
│ │ │ │ ├── variables.scss
│ │ │ │ ├── vector-map.scss
│ │ │ │ └── widget.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _badges.scss
│ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ ├── _close.scss
│ │ │ │ │ ├── _code.scss
│ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _media.scss
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modals.scss
│ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ ├── _navs.scss
│ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ ├── _pager.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ ├── _print.scss
│ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _tables.scss
│ │ │ │ │ ├── _theme.scss
│ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ ├── _variables.scss
│ │ │ │ │ └── _wells.scss
│ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ ├── _bootstrap.scss
│ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ ├── assets
│ │ │ ├── codemirror
│ │ │ │ ├── filetree.json
│ │ │ │ ├── mode
│ │ │ │ │ ├── apl
│ │ │ │ │ │ └── apl.js
│ │ │ │ │ ├── asciiarmor
│ │ │ │ │ │ └── asciiarmor.js
│ │ │ │ │ ├── asn.1
│ │ │ │ │ │ └── asn.1.js
│ │ │ │ │ ├── asterisk
│ │ │ │ │ │ └── asterisk.js
│ │ │ │ │ ├── brainfuck
│ │ │ │ │ │ └── brainfuck.js
│ │ │ │ │ ├── clike
│ │ │ │ │ │ └── clike.js
│ │ │ │ │ ├── clojure
│ │ │ │ │ │ └── clojure.js
│ │ │ │ │ ├── cmake
│ │ │ │ │ │ └── cmake.js
│ │ │ │ │ ├── cobol
│ │ │ │ │ │ └── cobol.js
│ │ │ │ │ ├── coffeescript
│ │ │ │ │ │ └── coffeescript.js
│ │ │ │ │ ├── commonlisp
│ │ │ │ │ │ └── commonlisp.js
│ │ │ │ │ ├── crystal
│ │ │ │ │ │ └── crystal.js
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── css.js
│ │ │ │ │ ├── cypher
│ │ │ │ │ │ └── cypher.js
│ │ │ │ │ ├── d
│ │ │ │ │ │ └── d.js
│ │ │ │ │ ├── dart
│ │ │ │ │ │ └── dart.js
│ │ │ │ │ ├── diff
│ │ │ │ │ │ └── diff.js
│ │ │ │ │ ├── django
│ │ │ │ │ │ └── django.js
│ │ │ │ │ ├── dockerfile
│ │ │ │ │ │ └── dockerfile.js
│ │ │ │ │ ├── dtd
│ │ │ │ │ │ └── dtd.js
│ │ │ │ │ ├── dylan
│ │ │ │ │ │ └── dylan.js
│ │ │ │ │ ├── ebnf
│ │ │ │ │ │ └── ebnf.js
│ │ │ │ │ ├── ecl
│ │ │ │ │ │ └── ecl.js
│ │ │ │ │ ├── eiffel
│ │ │ │ │ │ └── eiffel.js
│ │ │ │ │ ├── elm
│ │ │ │ │ │ └── elm.js
│ │ │ │ │ ├── erlang
│ │ │ │ │ │ └── erlang.js
│ │ │ │ │ ├── factor
│ │ │ │ │ │ └── factor.js
│ │ │ │ │ ├── fcl
│ │ │ │ │ │ └── fcl.js
│ │ │ │ │ ├── forth
│ │ │ │ │ │ └── forth.js
│ │ │ │ │ ├── fortran
│ │ │ │ │ │ └── fortran.js
│ │ │ │ │ ├── gas
│ │ │ │ │ │ └── gas.js
│ │ │ │ │ ├── gfm
│ │ │ │ │ │ └── gfm.js
│ │ │ │ │ ├── gherkin
│ │ │ │ │ │ └── gherkin.js
│ │ │ │ │ ├── go
│ │ │ │ │ │ └── go.js
│ │ │ │ │ ├── groovy
│ │ │ │ │ │ └── groovy.js
│ │ │ │ │ ├── haml
│ │ │ │ │ │ └── haml.js
│ │ │ │ │ ├── handlebars
│ │ │ │ │ │ └── handlebars.js
│ │ │ │ │ ├── haskell
│ │ │ │ │ │ └── haskell.js
│ │ │ │ │ ├── haskell-literate
│ │ │ │ │ │ └── haskell-literate.js
│ │ │ │ │ ├── haxe
│ │ │ │ │ │ └── haxe.js
│ │ │ │ │ ├── htmlembedded
│ │ │ │ │ │ └── htmlembedded.js
│ │ │ │ │ ├── htmlmixed
│ │ │ │ │ │ └── htmlmixed.js
│ │ │ │ │ ├── http
│ │ │ │ │ │ └── http.js
│ │ │ │ │ ├── idl
│ │ │ │ │ │ └── idl.js
│ │ │ │ │ ├── javascript
│ │ │ │ │ │ └── javascript.js
│ │ │ │ │ ├── jinja2
│ │ │ │ │ │ └── jinja2.js
│ │ │ │ │ ├── jsx
│ │ │ │ │ │ └── jsx.js
│ │ │ │ │ ├── julia
│ │ │ │ │ │ └── julia.js
│ │ │ │ │ ├── livescript
│ │ │ │ │ │ └── livescript.js
│ │ │ │ │ ├── lua
│ │ │ │ │ │ └── lua.js
│ │ │ │ │ ├── markdown
│ │ │ │ │ │ └── markdown.js
│ │ │ │ │ ├── mathematica
│ │ │ │ │ │ └── mathematica.js
│ │ │ │ │ ├── mbox
│ │ │ │ │ │ └── mbox.js
│ │ │ │ │ ├── meta.js
│ │ │ │ │ ├── mirc
│ │ │ │ │ │ └── mirc.js
│ │ │ │ │ ├── mllike
│ │ │ │ │ │ └── mllike.js
│ │ │ │ │ ├── modelica
│ │ │ │ │ │ └── modelica.js
│ │ │ │ │ ├── mscgen
│ │ │ │ │ │ └── mscgen.js
│ │ │ │ │ ├── mumps
│ │ │ │ │ │ └── mumps.js
│ │ │ │ │ ├── nginx
│ │ │ │ │ │ └── nginx.js
│ │ │ │ │ ├── nsis
│ │ │ │ │ │ └── nsis.js
│ │ │ │ │ ├── ntriples
│ │ │ │ │ │ └── ntriples.js
│ │ │ │ │ ├── octave
│ │ │ │ │ │ └── octave.js
│ │ │ │ │ ├── oz
│ │ │ │ │ │ └── oz.js
│ │ │ │ │ ├── pascal
│ │ │ │ │ │ └── pascal.js
│ │ │ │ │ ├── pegjs
│ │ │ │ │ │ └── pegjs.js
│ │ │ │ │ ├── perl
│ │ │ │ │ │ └── perl.js
│ │ │ │ │ ├── php
│ │ │ │ │ │ └── php.js
│ │ │ │ │ ├── pig
│ │ │ │ │ │ └── pig.js
│ │ │ │ │ ├── powershell
│ │ │ │ │ │ └── powershell.js
│ │ │ │ │ ├── properties
│ │ │ │ │ │ └── properties.js
│ │ │ │ │ ├── protobuf
│ │ │ │ │ │ └── protobuf.js
│ │ │ │ │ ├── pug
│ │ │ │ │ │ └── pug.js
│ │ │ │ │ ├── puppet
│ │ │ │ │ │ └── puppet.js
│ │ │ │ │ ├── python
│ │ │ │ │ │ └── python.js
│ │ │ │ │ ├── q
│ │ │ │ │ │ └── q.js
│ │ │ │ │ ├── r
│ │ │ │ │ │ └── r.js
│ │ │ │ │ ├── rpm
│ │ │ │ │ │ ├── changes
│ │ │ │ │ │ │ └── index.html
│ │ │ │ │ │ └── rpm.js
│ │ │ │ │ ├── rst
│ │ │ │ │ │ └── rst.js
│ │ │ │ │ ├── ruby
│ │ │ │ │ │ └── ruby.js
│ │ │ │ │ ├── rust
│ │ │ │ │ │ └── rust.js
│ │ │ │ │ ├── sas
│ │ │ │ │ │ └── sas.js
│ │ │ │ │ ├── sass
│ │ │ │ │ │ └── sass.js
│ │ │ │ │ ├── scheme
│ │ │ │ │ │ └── scheme.js
│ │ │ │ │ ├── shell
│ │ │ │ │ │ └── shell.js
│ │ │ │ │ ├── sieve
│ │ │ │ │ │ └── sieve.js
│ │ │ │ │ ├── slim
│ │ │ │ │ │ └── slim.js
│ │ │ │ │ ├── smalltalk
│ │ │ │ │ │ └── smalltalk.js
│ │ │ │ │ ├── smarty
│ │ │ │ │ │ └── smarty.js
│ │ │ │ │ ├── solr
│ │ │ │ │ │ └── solr.js
│ │ │ │ │ ├── soy
│ │ │ │ │ │ └── soy.js
│ │ │ │ │ ├── sparql
│ │ │ │ │ │ └── sparql.js
│ │ │ │ │ ├── spreadsheet
│ │ │ │ │ │ └── spreadsheet.js
│ │ │ │ │ ├── sql
│ │ │ │ │ │ └── sql.js
│ │ │ │ │ ├── stex
│ │ │ │ │ │ └── stex.js
│ │ │ │ │ ├── stylus
│ │ │ │ │ │ └── stylus.js
│ │ │ │ │ ├── swift
│ │ │ │ │ │ └── swift.js
│ │ │ │ │ ├── tcl
│ │ │ │ │ │ └── tcl.js
│ │ │ │ │ ├── textile
│ │ │ │ │ │ └── textile.js
│ │ │ │ │ ├── tiddlywiki
│ │ │ │ │ │ ├── tiddlywiki.css
│ │ │ │ │ │ └── tiddlywiki.js
│ │ │ │ │ ├── tiki
│ │ │ │ │ │ ├── tiki.css
│ │ │ │ │ │ └── tiki.js
│ │ │ │ │ ├── toml
│ │ │ │ │ │ └── toml.js
│ │ │ │ │ ├── tornado
│ │ │ │ │ │ └── tornado.js
│ │ │ │ │ ├── troff
│ │ │ │ │ │ └── troff.js
│ │ │ │ │ ├── ttcn
│ │ │ │ │ │ └── ttcn.js
│ │ │ │ │ ├── ttcn-cfg
│ │ │ │ │ │ └── ttcn-cfg.js
│ │ │ │ │ ├── turtle
│ │ │ │ │ │ └── turtle.js
│ │ │ │ │ ├── twig
│ │ │ │ │ │ └── twig.js
│ │ │ │ │ ├── vb
│ │ │ │ │ │ └── vb.js
│ │ │ │ │ ├── vbscript
│ │ │ │ │ │ └── vbscript.js
│ │ │ │ │ ├── velocity
│ │ │ │ │ │ └── velocity.js
│ │ │ │ │ ├── verilog
│ │ │ │ │ │ └── verilog.js
│ │ │ │ │ ├── vhdl
│ │ │ │ │ │ └── vhdl.js
│ │ │ │ │ ├── vue
│ │ │ │ │ │ └── vue.js
│ │ │ │ │ ├── webidl
│ │ │ │ │ │ └── webidl.js
│ │ │ │ │ ├── xml
│ │ │ │ │ │ └── xml.js
│ │ │ │ │ ├── xquery
│ │ │ │ │ │ └── xquery.js
│ │ │ │ │ ├── yacas
│ │ │ │ │ │ └── yacas.js
│ │ │ │ │ ├── yaml
│ │ │ │ │ │ └── yaml.js
│ │ │ │ │ ├── yaml-frontmatter
│ │ │ │ │ │ └── yaml-frontmatter.js
│ │ │ │ │ └── z80
│ │ │ │ │ └── z80.js
│ │ │ │ ├── source
│ │ │ │ │ ├── another.html
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── style.css
│ │ │ │ │ └── index.html
│ │ │ │ └── theme
│ │ │ │ ├── 3024-day.css
│ │ │ │ ├── 3024-night.css
│ │ │ │ ├── abcdef.css
│ │ │ │ ├── ambiance.css
│ │ │ │ ├── ambiance-mobile.css
│ │ │ │ ├── base16-dark.css
│ │ │ │ ├── base16-light.css
│ │ │ │ ├── bespin.css
│ │ │ │ ├── blackboard.css
│ │ │ │ ├── cobalt.css
│ │ │ │ ├── colorforth.css
│ │ │ │ ├── dracula.css
│ │ │ │ ├── duotone-dark.css
│ │ │ │ ├── duotone-light.css
│ │ │ │ ├── eclipse.css
│ │ │ │ ├── elegant.css
│ │ │ │ ├── erlang-dark.css
│ │ │ │ ├── hopscotch.css
│ │ │ │ ├── icecoder.css
│ │ │ │ ├── isotope.css
│ │ │ │ ├── lesser-dark.css
│ │ │ │ ├── liquibyte.css
│ │ │ │ ├── material.css
│ │ │ │ ├── mbo.css
│ │ │ │ ├── mdn-like.css
│ │ │ │ ├── midnight.css
│ │ │ │ ├── monokai.css
│ │ │ │ ├── neat.css
│ │ │ │ ├── neo.css
│ │ │ │ ├── night.css
│ │ │ │ ├── panda-syntax.css
│ │ │ │ ├── paraiso-dark.css
│ │ │ │ ├── paraiso-light.css
│ │ │ │ ├── pastel-on-dark.css
│ │ │ │ ├── railscasts.css
│ │ │ │ ├── rubyblue.css
│ │ │ │ ├── seti.css
│ │ │ │ ├── solarized.css
│ │ │ │ ├── the-matrix.css
│ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ ├── ttcn.css
│ │ │ │ ├── twilight.css
│ │ │ │ ├── vibrant-ink.css
│ │ │ │ ├── xq-dark.css
│ │ │ │ ├── xq-light.css
│ │ │ │ ├── yeti.css
│ │ │ │ └── zenburn.css
│ │ │ ├── company.json
│ │ │ ├── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── es_AR.json
│ │ │ ├── img
│ │ │ │ ├── angular.svg
│ │ │ │ ├── bg10.jpg
│ │ │ │ ├── bg1.jpg
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── bg3.jpg
│ │ │ │ ├── bg4.jpg
│ │ │ │ ├── bg5.jpg
│ │ │ │ ├── bg6.jpg
│ │ │ │ ├── bg7.jpg
│ │ │ │ ├── bg8.jpg
│ │ │ │ ├── bg9.jpg
│ │ │ │ ├── dummy.png
│ │ │ │ ├── lock-bg.jpg
│ │ │ │ ├── logo.png
│ │ │ │ ├── logo-single.png
│ │ │ │ ├── mb-sample.jpg
│ │ │ │ ├── mockup.png
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.empty.png
│ │ │ │ │ └── preloader.full.png
│ │ │ │ ├── profile-bg.jpg
│ │ │ │ └── user
│ │ │ │ ├── 01.jpg
│ │ │ │ ├── 02.jpg
│ │ │ │ ├── 03.jpg
│ │ │ │ ├── 04.jpg
│ │ │ │ ├── 05.jpg
│ │ │ │ ├── 06.jpg
│ │ │ │ ├── 07.jpg
│ │ │ │ ├── 08.jpg
│ │ │ │ ├── 09.jpg
│ │ │ │ ├── 10.jpg
│ │ │ │ ├── 11.jpg
│ │ │ │ ├── 12.jpg
│ │ │ │ └── 13.jpg
│ │ │ └── server
│ │ │ ├── ag-owinners.json
│ │ │ ├── chart
│ │ │ │ ├── area.json
│ │ │ │ ├── bar.json
│ │ │ │ ├── barstacked.json
│ │ │ │ ├── barstackedv2.json
│ │ │ │ ├── donut.json
│ │ │ │ ├── line.json
│ │ │ │ ├── pie.json
│ │ │ │ ├── realtime.json
│ │ │ │ ├── spline.json
│ │ │ │ ├── splinev2.json
│ │ │ │ └── splinev3.json
│ │ │ └── mails.json
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── modernizr.js
│ │ ├── polyfills.ts
│ │ ├── styles.scss
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ ├── typings.d.ts
│ │ └── vendor.ts
│ ├── tsconfig.json
│ └── tslint.json
├── angular5-bs4
│ └── ng2angle
│ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ ├── karma.conf.js
│ ├── modernizr-config.json
│ ├── package.json
│ ├── package-lock.json
│ ├── protractor.conf.js
│ ├── README.md
│ ├── src
│ │ ├── app
│ │ │ ├── app.component.html
│ │ │ ├── app.component.scss
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── core
│ │ │ │ ├── core.module.ts
│ │ │ │ ├── menu
│ │ │ │ │ ├── menu.service.spec.ts
│ │ │ │ │ └── menu.service.ts
│ │ │ │ ├── module-import-guard.ts
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.component.html
│ │ │ │ │ ├── preloader.js
│ │ │ │ │ └── preloader.scss
│ │ │ │ ├── settings
│ │ │ │ │ ├── settings.service.spec.ts
│ │ │ │ │ └── settings.service.ts
│ │ │ │ ├── themes
│ │ │ │ │ ├── themes.service.spec.ts
│ │ │ │ │ └── themes.service.ts
│ │ │ │ └── translator
│ │ │ │ ├── translator.service.spec.ts
│ │ │ │ └── translator.service.ts
│ │ │ ├── index.ts
│ │ │ ├── layout
│ │ │ │ ├── footer
│ │ │ │ │ ├── footer.component.html
│ │ │ │ │ ├── footer.component.scss
│ │ │ │ │ ├── footer.component.spec.ts
│ │ │ │ │ └── footer.component.ts
│ │ │ │ ├── header
│ │ │ │ │ ├── header.component.h.html
│ │ │ │ │ ├── header.component.html
│ │ │ │ │ ├── header.component.scss
│ │ │ │ │ ├── header.component.spec.ts
│ │ │ │ │ ├── header.component.ts
│ │ │ │ │ └── navsearch
│ │ │ │ │ ├── navsearch.component.html
│ │ │ │ │ ├── navsearch.component.scss
│ │ │ │ │ ├── navsearch.component.spec.ts
│ │ │ │ │ └── navsearch.component.ts
│ │ │ │ ├── layout.component.h.html
│ │ │ │ ├── layout.component.html
│ │ │ │ ├── layout.component.scss
│ │ │ │ ├── layout.component.spec.ts
│ │ │ │ ├── layout.component.ts
│ │ │ │ ├── layout.module.ts
│ │ │ │ ├── offsidebar
│ │ │ │ │ ├── offsidebar.component.html
│ │ │ │ │ ├── offsidebar.component.scss
│ │ │ │ │ ├── offsidebar.component.spec.ts
│ │ │ │ │ └── offsidebar.component.ts
│ │ │ │ └── sidebar
│ │ │ │ ├── sidebar.component.html
│ │ │ │ ├── sidebar.component.scss
│ │ │ │ ├── sidebar.component.spec.ts
│ │ │ │ ├── sidebar.component.ts
│ │ │ │ └── userblock
│ │ │ │ ├── userblock.component.html
│ │ │ │ ├── userblock.component.scss
│ │ │ │ ├── userblock.component.spec.ts
│ │ │ │ ├── userblock.component.ts
│ │ │ │ ├── userblock.service.spec.ts
│ │ │ │ └── userblock.service.ts
│ │ │ ├── routes
│ │ │ │ ├── blog
│ │ │ │ │ ├── articles
│ │ │ │ │ │ ├── articles.component.html
│ │ │ │ │ │ ├── articles.component.scss
│ │ │ │ │ │ └── articles.component.ts
│ │ │ │ │ ├── articleview
│ │ │ │ │ │ ├── articleview.component.html
│ │ │ │ │ │ ├── articleview.component.scss
│ │ │ │ │ │ └── articleview.component.ts
│ │ │ │ │ ├── blog.module.ts
│ │ │ │ │ ├── list
│ │ │ │ │ │ ├── list.component.html
│ │ │ │ │ │ ├── list.component.scss
│ │ │ │ │ │ └── list.component.ts
│ │ │ │ │ └── post
│ │ │ │ │ ├── post.component.html
│ │ │ │ │ ├── post.component.scss
│ │ │ │ │ └── post.component.ts
│ │ │ │ ├── charts
│ │ │ │ │ ├── chartjs
│ │ │ │ │ │ ├── chartjs.component.html
│ │ │ │ │ │ ├── chartjs.component.scss
│ │ │ │ │ │ └── chartjs.component.ts
│ │ │ │ │ ├── charts.module.ts
│ │ │ │ │ ├── flot
│ │ │ │ │ │ ├── flot.component.html
│ │ │ │ │ │ ├── flot.component.scss
│ │ │ │ │ │ └── flot.component.ts
│ │ │ │ │ └── radial
│ │ │ │ │ ├── radial.component.html
│ │ │ │ │ ├── radial.component.scss
│ │ │ │ │ └── radial.component.ts
│ │ │ │ ├── dashboard
│ │ │ │ │ ├── dashboard.module.ts
│ │ │ │ │ ├── dashboardv1
│ │ │ │ │ │ ├── dashboardv1.component.html
│ │ │ │ │ │ ├── dashboardv1.component.scss
│ │ │ │ │ │ └── dashboardv1.component.ts
│ │ │ │ │ ├── dashboardv2
│ │ │ │ │ │ ├── dashboardv2.component.html
│ │ │ │ │ │ ├── dashboardv2.component.scss
│ │ │ │ │ │ └── dashboardv2.component.ts
│ │ │ │ │ └── dashboardv3
│ │ │ │ │ ├── dashboardv3.component.html
│ │ │ │ │ ├── dashboardv3.component.scss
│ │ │ │ │ └── dashboardv3.component.ts
│ │ │ │ ├── ecommerce
│ │ │ │ │ ├── checkout
│ │ │ │ │ │ ├── checkout.component.html
│ │ │ │ │ │ ├── checkout.component.scss
│ │ │ │ │ │ └── checkout.component.ts
│ │ │ │ │ ├── ecommerce.module.ts
│ │ │ │ │ ├── orders
│ │ │ │ │ │ ├── orders.component.html
│ │ │ │ │ │ ├── orders.component.scss
│ │ │ │ │ │ └── orders.component.ts
│ │ │ │ │ ├── orderview
│ │ │ │ │ │ ├── orderview.component.html
│ │ │ │ │ │ ├── orderview.component.scss
│ │ │ │ │ │ └── orderview.component.ts
│ │ │ │ │ ├── products
│ │ │ │ │ │ ├── products.component.html
│ │ │ │ │ │ ├── products.component.scss
│ │ │ │ │ │ └── products.component.ts
│ │ │ │ │ └── productview
│ │ │ │ │ ├── productview.component.html
│ │ │ │ │ ├── productview.component.scss
│ │ │ │ │ └── productview.component.ts
│ │ │ │ ├── elements
│ │ │ │ │ ├── buttons
│ │ │ │ │ │ ├── buttons.component.html
│ │ │ │ │ │ ├── buttons.component.scss
│ │ │ │ │ │ ├── buttons.component.spec.ts
│ │ │ │ │ │ └── buttons.component.ts
│ │ │ │ │ ├── colors
│ │ │ │ │ │ ├── colors.component.html
│ │ │ │ │ │ ├── colors.component.scss
│ │ │ │ │ │ ├── colors.component.spec.ts
│ │ │ │ │ │ └── colors.component.ts
│ │ │ │ │ ├── dropdown
│ │ │ │ │ │ ├── dropdown.component.html
│ │ │ │ │ │ ├── dropdown.component.scss
│ │ │ │ │ │ ├── dropdown.component.spec.ts
│ │ │ │ │ │ └── dropdown.component.ts
│ │ │ │ │ ├── elements.module.ts
│ │ │ │ │ ├── grid
│ │ │ │ │ │ ├── grid.component.html
│ │ │ │ │ │ ├── grid.component.scss
│ │ │ │ │ │ ├── grid.component.spec.ts
│ │ │ │ │ │ └── grid.component.ts
│ │ │ │ │ ├── gridmasonry
│ │ │ │ │ │ ├── gridmasonry.component.html
│ │ │ │ │ │ ├── gridmasonry.component.scss
│ │ │ │ │ │ ├── gridmasonry.component.spec.ts
│ │ │ │ │ │ └── gridmasonry.component.ts
│ │ │ │ │ ├── iconsfont
│ │ │ │ │ │ ├── iconsfont.component.html
│ │ │ │ │ │ ├── iconsfont.component.scss
│ │ │ │ │ │ ├── iconsfont.component.spec.ts
│ │ │ │ │ │ └── iconsfont.component.ts
│ │ │ │ │ ├── iconsweather
│ │ │ │ │ │ ├── iconsweather.component.html
│ │ │ │ │ │ ├── iconsweather.component.scss
│ │ │ │ │ │ ├── iconsweather.component.spec.ts
│ │ │ │ │ │ └── iconsweather.component.ts
│ │ │ │ │ ├── infinitescroll
│ │ │ │ │ │ ├── infinitescroll.component.html
│ │ │ │ │ │ ├── infinitescroll.component.scss
│ │ │ │ │ │ └── infinitescroll.component.ts
│ │ │ │ │ ├── interaction
│ │ │ │ │ │ ├── interaction.component.html
│ │ │ │ │ │ ├── interaction.component.scss
│ │ │ │ │ │ ├── interaction.component.spec.ts
│ │ │ │ │ │ └── interaction.component.ts
│ │ │ │ │ ├── navtree
│ │ │ │ │ │ ├── navtree.component.html
│ │ │ │ │ │ ├── navtree.component.scss
│ │ │ │ │ │ └── navtree.component.ts
│ │ │ │ │ ├── notification
│ │ │ │ │ │ ├── notification.component.html
│ │ │ │ │ │ ├── notification.component.scss
│ │ │ │ │ │ └── notification.component.ts
│ │ │ │ │ ├── sortable
│ │ │ │ │ │ ├── sortable.component.html
│ │ │ │ │ │ ├── sortable.component.scss
│ │ │ │ │ │ ├── sortable.component.ts
│ │ │ │ │ │ └── sortable.product.ts
│ │ │ │ │ ├── spinners
│ │ │ │ │ │ ├── spinners.component.html
│ │ │ │ │ │ ├── spinners.component.scss
│ │ │ │ │ │ ├── spinners.component.spec.ts
│ │ │ │ │ │ └── spinners.component.ts
│ │ │ │ │ ├── sweetalert
│ │ │ │ │ │ ├── sweetalert.component.html
│ │ │ │ │ │ ├── sweetalert.component.scss
│ │ │ │ │ │ ├── sweetalert.component.spec.ts
│ │ │ │ │ │ └── sweetalert.component.ts
│ │ │ │ │ └── typography
│ │ │ │ │ ├── typography.component.html
│ │ │ │ │ ├── typography.component.scss
│ │ │ │ │ ├── typography.component.spec.ts
│ │ │ │ │ └── typography.component.ts
│ │ │ │ ├── extras
│ │ │ │ │ ├── bugtracker
│ │ │ │ │ │ ├── bugtracker.component.html
│ │ │ │ │ │ ├── bugtracker.component.scss
│ │ │ │ │ │ └── bugtracker.component.ts
│ │ │ │ │ ├── calendar
│ │ │ │ │ │ ├── calendar.component.html
│ │ │ │ │ │ ├── calendar.component.scss
│ │ │ │ │ │ └── calendar.component.ts
│ │ │ │ │ ├── codeeditor
│ │ │ │ │ │ ├── codeeditor.component.html
│ │ │ │ │ │ ├── codeeditor.component.scss
│ │ │ │ │ │ └── codeeditor.component.ts
│ │ │ │ │ ├── contactdetails
│ │ │ │ │ │ ├── contactdetails.component.html
│ │ │ │ │ │ ├── contactdetails.component.scss
│ │ │ │ │ │ └── contactdetails.component.ts
│ │ │ │ │ ├── contacts
│ │ │ │ │ │ ├── contacts.component.html
│ │ │ │ │ │ ├── contacts.component.scss
│ │ │ │ │ │ └── contacts.component.ts
│ │ │ │ │ ├── extras.module.ts
│ │ │ │ │ ├── faq
│ │ │ │ │ │ ├── faq.component.html
│ │ │ │ │ │ ├── faq.component.scss
│ │ │ │ │ │ └── faq.component.ts
│ │ │ │ │ ├── filemanager
│ │ │ │ │ │ ├── filemanager.component.html
│ │ │ │ │ │ ├── filemanager.component.scss
│ │ │ │ │ │ └── filemanager.component.ts
│ │ │ │ │ ├── followers
│ │ │ │ │ │ ├── followers.component.html
│ │ │ │ │ │ ├── followers.component.scss
│ │ │ │ │ │ └── followers.component.ts
│ │ │ │ │ ├── forum
│ │ │ │ │ │ ├── forum.component.html
│ │ │ │ │ │ ├── forum.component.scss
│ │ │ │ │ │ ├── forum.component.ts
│ │ │ │ │ │ ├── forumdiscussion
│ │ │ │ │ │ │ ├── forumdiscussion.component.html
│ │ │ │ │ │ │ ├── forumdiscussion.component.scss
│ │ │ │ │ │ │ └── forumdiscussion.component.ts
│ │ │ │ │ │ └── forumtopics
│ │ │ │ │ │ ├── forumtopics.component.html
│ │ │ │ │ │ ├── forumtopics.component.scss
│ │ │ │ │ │ └── forumtopics.component.ts
│ │ │ │ │ ├── helpcenter
│ │ │ │ │ │ ├── helpcenter.component.html
│ │ │ │ │ │ ├── helpcenter.component.scss
│ │ │ │ │ │ └── helpcenter.component.ts
│ │ │ │ │ ├── invoice
│ │ │ │ │ │ ├── invoice.component.html
│ │ │ │ │ │ ├── invoice.component.scss
│ │ │ │ │ │ └── invoice.component.ts
│ │ │ │ │ ├── mailbox
│ │ │ │ │ │ ├── compose
│ │ │ │ │ │ │ ├── compose.component.html
│ │ │ │ │ │ │ ├── compose.component.scss
│ │ │ │ │ │ │ └── compose.component.ts
│ │ │ │ │ │ ├── folder
│ │ │ │ │ │ │ ├── folder.component.html
│ │ │ │ │ │ │ ├── folder.component.scss
│ │ │ │ │ │ │ └── folder.component.ts
│ │ │ │ │ │ ├── mailbox.component.html
│ │ │ │ │ │ ├── mailbox.component.scss
│ │ │ │ │ │ ├── mailbox.component.ts
│ │ │ │ │ │ └── view
│ │ │ │ │ │ ├── view.component.html
│ │ │ │ │ │ ├── view.component.scss
│ │ │ │ │ │ └── view.component.ts
│ │ │ │ │ ├── plans
│ │ │ │ │ │ ├── plans.component.html
│ │ │ │ │ │ ├── plans.component.scss
│ │ │ │ │ │ └── plans.component.ts
│ │ │ │ │ ├── profile
│ │ │ │ │ │ ├── profile.component.html
│ │ │ │ │ │ ├── profile.component.scss
│ │ │ │ │ │ └── profile.component.ts
│ │ │ │ │ ├── projects
│ │ │ │ │ │ ├── projects.component.html
│ │ │ │ │ │ ├── projects.component.scss
│ │ │ │ │ │ └── projects.component.ts
│ │ │ │ │ ├── projectsdetails
│ │ │ │ │ │ ├── projectsdetails.component.html
│ │ │ │ │ │ ├── projectsdetails.component.scss
│ │ │ │ │ │ └── projectsdetails.component.ts
│ │ │ │ │ ├── search
│ │ │ │ │ │ ├── search.component.html
│ │ │ │ │ │ ├── search.component.scss
│ │ │ │ │ │ └── search.component.ts
│ │ │ │ │ ├── settings
│ │ │ │ │ │ ├── settings.component.html
│ │ │ │ │ │ ├── settings.component.scss
│ │ │ │ │ │ └── settings.component.ts
│ │ │ │ │ ├── socialboard
│ │ │ │ │ │ ├── socialboard.component.html
│ │ │ │ │ │ ├── socialboard.component.scss
│ │ │ │ │ │ └── socialboard.component.ts
│ │ │ │ │ ├── teamviewer
│ │ │ │ │ │ ├── teamviewer.component.html
│ │ │ │ │ │ ├── teamviewer.component.scss
│ │ │ │ │ │ └── teamviewer.component.ts
│ │ │ │ │ ├── timeline
│ │ │ │ │ │ ├── timeline.component.html
│ │ │ │ │ │ ├── timeline.component.scss
│ │ │ │ │ │ └── timeline.component.ts
│ │ │ │ │ ├── todolist
│ │ │ │ │ │ ├── todolist.component.html
│ │ │ │ │ │ ├── todolist.component.scss
│ │ │ │ │ │ └── todolist.component.ts
│ │ │ │ │ └── votelinks
│ │ │ │ │ ├── votelinks.component.html
│ │ │ │ │ ├── votelinks.component.scss
│ │ │ │ │ └── votelinks.component.ts
│ │ │ │ ├── forms
│ │ │ │ │ ├── cropper
│ │ │ │ │ │ ├── cropper.component.html
│ │ │ │ │ │ ├── cropper.component.scss
│ │ │ │ │ │ └── cropper.component.ts
│ │ │ │ │ ├── extended
│ │ │ │ │ │ ├── extended.component.html
│ │ │ │ │ │ ├── extended.component.scss
│ │ │ │ │ │ └── extended.component.ts
│ │ │ │ │ ├── forms.module.ts
│ │ │ │ │ ├── standard
│ │ │ │ │ │ ├── standard.component.html
│ │ │ │ │ │ ├── standard.component.scss
│ │ │ │ │ │ └── standard.component.ts
│ │ │ │ │ ├── upload
│ │ │ │ │ │ ├── upload.component.html
│ │ │ │ │ │ ├── upload.component.scss
│ │ │ │ │ │ └── upload.component.ts
│ │ │ │ │ └── validation
│ │ │ │ │ ├── validation.component.html
│ │ │ │ │ ├── validation.component.scss
│ │ │ │ │ └── validation.component.ts
│ │ │ │ ├── home
│ │ │ │ │ ├── home
│ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ ├── home.component.spec.ts
│ │ │ │ │ │ └── home.component.ts
│ │ │ │ │ └── home.module.ts
│ │ │ │ ├── maps
│ │ │ │ │ │ ├── google.component.html
│ │ │ │ │ │ ├── google.component.scss
│ │ │ │ │ │ └── google.component.ts
│ │ │ │ │ ├── maps.module.ts
│ │ │ │ │ └── vector
│ │ │ │ │ ├── vector.component.html
│ │ │ │ │ ├── vector.component.scss
│ │ │ │ │ └── vector.component.ts
│ │ │ │ ├── menu.ts
│ │ │ │ ├── pages
│ │ │ │ │ ├── error404
│ │ │ │ │ │ ├── error404.component.html
│ │ │ │ │ │ ├── error404.component.scss
│ │ │ │ │ │ └── error404.component.ts
│ │ │ │ │ ├── error500
│ │ │ │ │ │ ├── error500.component.html
│ │ │ │ │ │ ├── error500.component.scss
│ │ │ │ │ │ └── error500.component.ts
│ │ │ │ │ ├── lock
│ │ │ │ │ │ ├── lock.component.html
│ │ │ │ │ │ ├── lock.component.scss
│ │ │ │ │ │ └── lock.component.ts
│ │ │ │ │ ├── login
│ │ │ │ │ │ ├── login.component.html
│ │ │ │ │ │ ├── login.component.scss
│ │ │ │ │ │ └── login.component.ts
│ │ │ │ │ ├── maintenance
│ │ │ │ │ │ ├── maintenance.component.html
│ │ │ │ │ │ ├── maintenance.component.scss
│ │ │ │ │ │ └── maintenance.component.ts
│ │ │ │ │ ├── pages.module.ts
│ │ │ │ │ ├── recover
│ │ │ │ │ │ ├── recover.component.html
│ │ │ │ │ │ ├── recover.component.scss
│ │ │ │ │ │ └── recover.component.ts
│ │ │ │ │ └── register
│ │ │ │ │ ├── register.component.html
│ │ │ │ │ ├── register.component.scss
│ │ │ │ │ └── register.component.ts
│ │ │ │ ├── routes.module.ts
│ │ │ │ ├── routes.ts
│ │ │ │ ├── tables
│ │ │ │ │ ├── angulargrid
│ │ │ │ │ │ ├── angulargrid.component.html
│ │ │ │ │ │ ├── angulargrid.component.scss
│ │ │ │ │ │ └── angulargrid.component.ts
│ │ │ │ │ ├── datatable
│ │ │ │ │ │ ├── datatable.component.html
│ │ │ │ │ │ ├── datatable.component.scss
│ │ │ │ │ │ ├── datatable.component.ts
│ │ │ │ │ │ └── ng2-table-data.ts
│ │ │ │ │ ├── extended
│ │ │ │ │ │ ├── extended.component.html
│ │ │ │ │ │ ├── extended.component.scss
│ │ │ │ │ │ └── extended.component.ts
│ │ │ │ │ ├── ngxdatatable
│ │ │ │ │ │ ├── ngxdatatable.component.html
│ │ │ │ │ │ ├── ngxdatatable.component.scss
│ │ │ │ │ │ └── ngxdatatable.component.ts
│ │ │ │ │ ├── standard
│ │ │ │ │ │ ├── standard.component.html
│ │ │ │ │ │ ├── standard.component.scss
│ │ │ │ │ │ └── standard.component.ts
│ │ │ │ │ └── tables.module.ts
│ │ │ │ └── widgets
│ │ │ │ ├── widgets
│ │ │ │ │ ├── widgets.component.html
│ │ │ │ │ ├── widgets.component.scss
│ │ │ │ │ └── widgets.component.ts
│ │ │ │ └── widgets.module.ts
│ │ │ └── shared
│ │ │ ├── colors
│ │ │ │ └── colors.service.ts
│ │ │ ├── directives
│ │ │ │ ├── checkall
│ │ │ │ │ └── checkall.directive.ts
│ │ │ │ ├── easypiechart
│ │ │ │ │ └── easypiechart.directive.ts
│ │ │ │ ├── flot
│ │ │ │ │ └── flot.directive.ts
│ │ │ │ ├── jqcloud
│ │ │ │ │ └── jqcloud.directive.ts
│ │ │ │ ├── now
│ │ │ │ │ └── now.directive.ts
│ │ │ │ ├── scrollable
│ │ │ │ │ └── scrollable.directive.ts
│ │ │ │ ├── sparkline
│ │ │ │ │ └── sparkline.directive.ts
│ │ │ │ └── vectormap
│ │ │ │ └── vectormap.directive.ts
│ │ │ ├── shared.module.ts
│ │ │ └── styles
│ │ │ ├── app
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-custom.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── calendar.scss
│ │ │ │ ├── cards.scss
│ │ │ │ ├── chart-easypie.scss
│ │ │ │ ├── chart-flot.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── file-upload.scss
│ │ │ │ ├── form-select2.scss
│ │ │ │ ├── form-tags-input.scss
│ │ │ │ ├── gmap.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── inputs.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── mailbox.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── plans.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── radial-bar.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── spinner.scss
│ │ │ │ ├── summernote.scss
│ │ │ │ ├── table-angulargrid.scss
│ │ │ │ ├── table-extras.scss
│ │ │ │ ├── timeline.scss
│ │ │ │ ├── todo.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typeahead.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── user-block.scss
│ │ │ │ ├── utils.scss
│ │ │ │ ├── variables.scss
│ │ │ │ └── vector-map.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── _alert.scss
│ │ │ │ ├── _badge.scss
│ │ │ │ ├── bootstrap-grid.scss
│ │ │ │ ├── bootstrap-reboot.scss
│ │ │ │ ├── bootstrap.scss
│ │ │ │ ├── _breadcrumb.scss
│ │ │ │ ├── _button-group.scss
│ │ │ │ ├── _buttons.scss
│ │ │ │ ├── _card.scss
│ │ │ │ ├── _carousel.scss
│ │ │ │ ├── _close.scss
│ │ │ │ ├── _code.scss
│ │ │ │ ├── _custom-forms.scss
│ │ │ │ ├── _dropdown.scss
│ │ │ │ ├── _forms.scss
│ │ │ │ ├── _functions.scss
│ │ │ │ ├── _grid.scss
│ │ │ │ ├── _images.scss
│ │ │ │ ├── _input-group.scss
│ │ │ │ ├── _jumbotron.scss
│ │ │ │ ├── _list-group.scss
│ │ │ │ ├── _media.scss
│ │ │ │ ├── mixins
│ │ │ │ │ ├── _alert.scss
│ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ ├── _badge.scss
│ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ ├── _box-shadow.scss
│ │ │ │ │ ├── _breakpoints.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _caret.scss
│ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ ├── _float.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _hover.scss
│ │ │ │ │ ├── _image.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _lists.scss
│ │ │ │ │ ├── _navbar-align.scss
│ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ ├── _resize.scss
│ │ │ │ │ ├── _screen-reader.scss
│ │ │ │ │ ├── _size.scss
│ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ ├── _text-hide.scss
│ │ │ │ │ ├── _text-truncate.scss
│ │ │ │ │ ├── _transition.scss
│ │ │ │ │ └── _visibility.scss
│ │ │ │ ├── _mixins.scss
│ │ │ │ ├── _modal.scss
│ │ │ │ ├── _navbar.scss
│ │ │ │ ├── _nav.scss
│ │ │ │ ├── _pagination.scss
│ │ │ │ ├── _popover.scss
│ │ │ │ ├── _print.scss
│ │ │ │ ├── _progress.scss
│ │ │ │ ├── _reboot.scss
│ │ │ │ ├── _root.scss
│ │ │ │ ├── _tables.scss
│ │ │ │ ├── _tooltip.scss
│ │ │ │ ├── _transitions.scss
│ │ │ │ ├── _type.scss
│ │ │ │ ├── utilities
│ │ │ │ │ ├── _align.scss
│ │ │ │ │ ├── _background.scss
│ │ │ │ │ ├── _borders.scss
│ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ ├── _display.scss
│ │ │ │ │ ├── _embed.scss
│ │ │ │ │ ├── _flex.scss
│ │ │ │ │ ├── _float.scss
│ │ │ │ │ ├── _position.scss
│ │ │ │ │ ├── _screenreaders.scss
│ │ │ │ │ ├── _sizing.scss
│ │ │ │ │ ├── _spacing.scss
│ │ │ │ │ ├── _text.scss
│ │ │ │ │ └── _visibility.scss
│ │ │ │ ├── _utilities.scss
│ │ │ │ └── _variables.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ ├── assets
│ │ │ ├── codemirror
│ │ │ │ ├── filetree.json
│ │ │ │ ├── mode
│ │ │ │ │ ├── apl
│ │ │ │ │ │ └── apl.js
│ │ │ │ │ ├── asciiarmor
│ │ │ │ │ │ └── asciiarmor.js
│ │ │ │ │ ├── asn.1
│ │ │ │ │ │ └── asn.1.js
│ │ │ │ │ ├── asterisk
│ │ │ │ │ │ └── asterisk.js
│ │ │ │ │ ├── brainfuck
│ │ │ │ │ │ └── brainfuck.js
│ │ │ │ │ ├── clike
│ │ │ │ │ │ └── clike.js
│ │ │ │ │ ├── clojure
│ │ │ │ │ │ └── clojure.js
│ │ │ │ │ ├── cmake
│ │ │ │ │ │ └── cmake.js
│ │ │ │ │ ├── cobol
│ │ │ │ │ │ └── cobol.js
│ │ │ │ │ ├── coffeescript
│ │ │ │ │ │ └── coffeescript.js
│ │ │ │ │ ├── commonlisp
│ │ │ │ │ │ └── commonlisp.js
│ │ │ │ │ ├── crystal
│ │ │ │ │ │ └── crystal.js
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── css.js
│ │ │ │ │ ├── cypher
│ │ │ │ │ │ └── cypher.js
│ │ │ │ │ ├── d
│ │ │ │ │ │ └── d.js
│ │ │ │ │ ├── dart
│ │ │ │ │ │ └── dart.js
│ │ │ │ │ ├── diff
│ │ │ │ │ │ └── diff.js
│ │ │ │ │ ├── django
│ │ │ │ │ │ └── django.js
│ │ │ │ │ ├── dockerfile
│ │ │ │ │ │ └── dockerfile.js
│ │ │ │ │ ├── dtd
│ │ │ │ │ │ └── dtd.js
│ │ │ │ │ ├── dylan
│ │ │ │ │ │ └── dylan.js
│ │ │ │ │ ├── ebnf
│ │ │ │ │ │ └── ebnf.js
│ │ │ │ │ ├── ecl
│ │ │ │ │ │ └── ecl.js
│ │ │ │ │ ├── eiffel
│ │ │ │ │ │ └── eiffel.js
│ │ │ │ │ ├── elm
│ │ │ │ │ │ └── elm.js
│ │ │ │ │ ├── erlang
│ │ │ │ │ │ └── erlang.js
│ │ │ │ │ ├── factor
│ │ │ │ │ │ └── factor.js
│ │ │ │ │ ├── fcl
│ │ │ │ │ │ └── fcl.js
│ │ │ │ │ ├── forth
│ │ │ │ │ │ └── forth.js
│ │ │ │ │ ├── fortran
│ │ │ │ │ │ └── fortran.js
│ │ │ │ │ ├── gas
│ │ │ │ │ │ └── gas.js
│ │ │ │ │ ├── gfm
│ │ │ │ │ │ └── gfm.js
│ │ │ │ │ ├── gherkin
│ │ │ │ │ │ └── gherkin.js
│ │ │ │ │ ├── go
│ │ │ │ │ │ └── go.js
│ │ │ │ │ ├── groovy
│ │ │ │ │ │ └── groovy.js
│ │ │ │ │ ├── haml
│ │ │ │ │ │ └── haml.js
│ │ │ │ │ ├── handlebars
│ │ │ │ │ │ └── handlebars.js
│ │ │ │ │ ├── haskell
│ │ │ │ │ │ └── haskell.js
│ │ │ │ │ ├── haskell-literate
│ │ │ │ │ │ └── haskell-literate.js
│ │ │ │ │ ├── haxe
│ │ │ │ │ │ └── haxe.js
│ │ │ │ │ ├── htmlembedded
│ │ │ │ │ │ └── htmlembedded.js
│ │ │ │ │ ├── htmlmixed
│ │ │ │ │ │ └── htmlmixed.js
│ │ │ │ │ ├── http
│ │ │ │ │ │ └── http.js
│ │ │ │ │ ├── idl
│ │ │ │ │ │ └── idl.js
│ │ │ │ │ ├── javascript
│ │ │ │ │ │ └── javascript.js
│ │ │ │ │ ├── jinja2
│ │ │ │ │ │ └── jinja2.js
│ │ │ │ │ ├── jsx
│ │ │ │ │ │ └── jsx.js
│ │ │ │ │ ├── julia
│ │ │ │ │ │ └── julia.js
│ │ │ │ │ ├── livescript
│ │ │ │ │ │ └── livescript.js
│ │ │ │ │ ├── lua
│ │ │ │ │ │ └── lua.js
│ │ │ │ │ ├── markdown
│ │ │ │ │ │ └── markdown.js
│ │ │ │ │ ├── mathematica
│ │ │ │ │ │ └── mathematica.js
│ │ │ │ │ ├── mbox
│ │ │ │ │ │ └── mbox.js
│ │ │ │ │ ├── meta.js
│ │ │ │ │ ├── mirc
│ │ │ │ │ │ └── mirc.js
│ │ │ │ │ ├── mllike
│ │ │ │ │ │ └── mllike.js
│ │ │ │ │ ├── modelica
│ │ │ │ │ │ └── modelica.js
│ │ │ │ │ ├── mscgen
│ │ │ │ │ │ └── mscgen.js
│ │ │ │ │ ├── mumps
│ │ │ │ │ │ └── mumps.js
│ │ │ │ │ ├── nginx
│ │ │ │ │ │ └── nginx.js
│ │ │ │ │ ├── nsis
│ │ │ │ │ │ └── nsis.js
│ │ │ │ │ ├── ntriples
│ │ │ │ │ │ └── ntriples.js
│ │ │ │ │ ├── octave
│ │ │ │ │ │ └── octave.js
│ │ │ │ │ ├── oz
│ │ │ │ │ │ └── oz.js
│ │ │ │ │ ├── pascal
│ │ │ │ │ │ └── pascal.js
│ │ │ │ │ ├── pegjs
│ │ │ │ │ │ └── pegjs.js
│ │ │ │ │ ├── perl
│ │ │ │ │ │ └── perl.js
│ │ │ │ │ ├── php
│ │ │ │ │ │ └── php.js
│ │ │ │ │ ├── pig
│ │ │ │ │ │ └── pig.js
│ │ │ │ │ ├── powershell
│ │ │ │ │ │ └── powershell.js
│ │ │ │ │ ├── properties
│ │ │ │ │ │ └── properties.js
│ │ │ │ │ ├── protobuf
│ │ │ │ │ │ └── protobuf.js
│ │ │ │ │ ├── pug
│ │ │ │ │ │ └── pug.js
│ │ │ │ │ ├── puppet
│ │ │ │ │ │ └── puppet.js
│ │ │ │ │ ├── python
│ │ │ │ │ │ └── python.js
│ │ │ │ │ ├── q
│ │ │ │ │ │ └── q.js
│ │ │ │ │ ├── r
│ │ │ │ │ │ └── r.js
│ │ │ │ │ ├── rpm
│ │ │ │ │ │ ├── changes
│ │ │ │ │ │ │ └── index.html
│ │ │ │ │ │ └── rpm.js
│ │ │ │ │ ├── rst
│ │ │ │ │ │ └── rst.js
│ │ │ │ │ ├── ruby
│ │ │ │ │ │ └── ruby.js
│ │ │ │ │ ├── rust
│ │ │ │ │ │ └── rust.js
│ │ │ │ │ ├── sas
│ │ │ │ │ │ └── sas.js
│ │ │ │ │ ├── sass
│ │ │ │ │ │ └── sass.js
│ │ │ │ │ ├── scheme
│ │ │ │ │ │ └── scheme.js
│ │ │ │ │ ├── shell
│ │ │ │ │ │ └── shell.js
│ │ │ │ │ ├── sieve
│ │ │ │ │ │ └── sieve.js
│ │ │ │ │ ├── slim
│ │ │ │ │ │ └── slim.js
│ │ │ │ │ ├── smalltalk
│ │ │ │ │ │ └── smalltalk.js
│ │ │ │ │ ├── smarty
│ │ │ │ │ │ └── smarty.js
│ │ │ │ │ ├── solr
│ │ │ │ │ │ └── solr.js
│ │ │ │ │ ├── soy
│ │ │ │ │ │ └── soy.js
│ │ │ │ │ ├── sparql
│ │ │ │ │ │ └── sparql.js
│ │ │ │ │ ├── spreadsheet
│ │ │ │ │ │ └── spreadsheet.js
│ │ │ │ │ ├── sql
│ │ │ │ │ │ └── sql.js
│ │ │ │ │ ├── stex
│ │ │ │ │ │ └── stex.js
│ │ │ │ │ ├── stylus
│ │ │ │ │ │ └── stylus.js
│ │ │ │ │ ├── swift
│ │ │ │ │ │ └── swift.js
│ │ │ │ │ ├── tcl
│ │ │ │ │ │ └── tcl.js
│ │ │ │ │ ├── textile
│ │ │ │ │ │ └── textile.js
│ │ │ │ │ ├── tiddlywiki
│ │ │ │ │ │ ├── tiddlywiki.css
│ │ │ │ │ │ └── tiddlywiki.js
│ │ │ │ │ ├── tiki
│ │ │ │ │ │ ├── tiki.css
│ │ │ │ │ │ └── tiki.js
│ │ │ │ │ ├── toml
│ │ │ │ │ │ └── toml.js
│ │ │ │ │ ├── tornado
│ │ │ │ │ │ └── tornado.js
│ │ │ │ │ ├── troff
│ │ │ │ │ │ └── troff.js
│ │ │ │ │ ├── ttcn
│ │ │ │ │ │ └── ttcn.js
│ │ │ │ │ ├── ttcn-cfg
│ │ │ │ │ │ └── ttcn-cfg.js
│ │ │ │ │ ├── turtle
│ │ │ │ │ │ └── turtle.js
│ │ │ │ │ ├── twig
│ │ │ │ │ │ └── twig.js
│ │ │ │ │ ├── vb
│ │ │ │ │ │ └── vb.js
│ │ │ │ │ ├── vbscript
│ │ │ │ │ │ └── vbscript.js
│ │ │ │ │ ├── velocity
│ │ │ │ │ │ └── velocity.js
│ │ │ │ │ ├── verilog
│ │ │ │ │ │ └── verilog.js
│ │ │ │ │ ├── vhdl
│ │ │ │ │ │ └── vhdl.js
│ │ │ │ │ ├── vue
│ │ │ │ │ │ └── vue.js
│ │ │ │ │ ├── webidl
│ │ │ │ │ │ └── webidl.js
│ │ │ │ │ ├── xml
│ │ │ │ │ │ └── xml.js
│ │ │ │ │ ├── xquery
│ │ │ │ │ │ └── xquery.js
│ │ │ │ │ ├── yacas
│ │ │ │ │ │ └── yacas.js
│ │ │ │ │ ├── yaml
│ │ │ │ │ │ └── yaml.js
│ │ │ │ │ ├── yaml-frontmatter
│ │ │ │ │ │ └── yaml-frontmatter.js
│ │ │ │ │ └── z80
│ │ │ │ │ └── z80.js
│ │ │ │ ├── source
│ │ │ │ │ ├── another.html
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── style.css
│ │ │ │ │ └── index.html
│ │ │ │ └── theme
│ │ │ │ ├── 3024-day.css
│ │ │ │ ├── 3024-night.css
│ │ │ │ ├── abcdef.css
│ │ │ │ ├── ambiance.css
│ │ │ │ ├── ambiance-mobile.css
│ │ │ │ ├── base16-dark.css
│ │ │ │ ├── base16-light.css
│ │ │ │ ├── bespin.css
│ │ │ │ ├── blackboard.css
│ │ │ │ ├── cobalt.css
│ │ │ │ ├── colorforth.css
│ │ │ │ ├── dracula.css
│ │ │ │ ├── duotone-dark.css
│ │ │ │ ├── duotone-light.css
│ │ │ │ ├── eclipse.css
│ │ │ │ ├── elegant.css
│ │ │ │ ├── erlang-dark.css
│ │ │ │ ├── hopscotch.css
│ │ │ │ ├── icecoder.css
│ │ │ │ ├── isotope.css
│ │ │ │ ├── lesser-dark.css
│ │ │ │ ├── liquibyte.css
│ │ │ │ ├── material.css
│ │ │ │ ├── mbo.css
│ │ │ │ ├── mdn-like.css
│ │ │ │ ├── midnight.css
│ │ │ │ ├── monokai.css
│ │ │ │ ├── neat.css
│ │ │ │ ├── neo.css
│ │ │ │ ├── night.css
│ │ │ │ ├── panda-syntax.css
│ │ │ │ ├── paraiso-dark.css
│ │ │ │ ├── paraiso-light.css
│ │ │ │ ├── pastel-on-dark.css
│ │ │ │ ├── railscasts.css
│ │ │ │ ├── rubyblue.css
│ │ │ │ ├── seti.css
│ │ │ │ ├── solarized.css
│ │ │ │ ├── the-matrix.css
│ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ ├── ttcn.css
│ │ │ │ ├── twilight.css
│ │ │ │ ├── vibrant-ink.css
│ │ │ │ ├── xq-dark.css
│ │ │ │ ├── xq-light.css
│ │ │ │ ├── yeti.css
│ │ │ │ └── zenburn.css
│ │ │ ├── company.json
│ │ │ ├── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── es_AR.json
│ │ │ ├── img
│ │ │ │ ├── angular.svg
│ │ │ │ ├── bg10.jpg
│ │ │ │ ├── bg1.jpg
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── bg3.jpg
│ │ │ │ ├── bg4.jpg
│ │ │ │ ├── bg5.jpg
│ │ │ │ ├── bg6.jpg
│ │ │ │ ├── bg7.jpg
│ │ │ │ ├── bg8.jpg
│ │ │ │ ├── bg9.jpg
│ │ │ │ ├── dummy.png
│ │ │ │ ├── lock-bg.jpg
│ │ │ │ ├── logo.png
│ │ │ │ ├── logo-single.png
│ │ │ │ ├── mb-sample.jpg
│ │ │ │ ├── mockup.png
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.empty.png
│ │ │ │ │ └── preloader.full.png
│ │ │ │ ├── profile-bg.jpg
│ │ │ │ └── user
│ │ │ │ ├── 01.jpg
│ │ │ │ ├── 02.jpg
│ │ │ │ ├── 03.jpg
│ │ │ │ ├── 04.jpg
│ │ │ │ ├── 05.jpg
│ │ │ │ ├── 06.jpg
│ │ │ │ ├── 07.jpg
│ │ │ │ ├── 08.jpg
│ │ │ │ ├── 09.jpg
│ │ │ │ ├── 10.jpg
│ │ │ │ ├── 11.jpg
│ │ │ │ ├── 12.jpg
│ │ │ │ └── 13.jpg
│ │ │ └── server
│ │ │ ├── ag-owinners.json
│ │ │ ├── chart
│ │ │ │ ├── area.json
│ │ │ │ ├── bar.json
│ │ │ │ ├── barstacked.json
│ │ │ │ ├── barstackedv2.json
│ │ │ │ ├── donut.json
│ │ │ │ ├── line.json
│ │ │ │ ├── pie.json
│ │ │ │ ├── realtime.json
│ │ │ │ ├── spline.json
│ │ │ │ ├── splinev2.json
│ │ │ │ └── splinev3.json
│ │ │ └── mails.json
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── modernizr.js
│ │ ├── polyfills.ts
│ │ ├── styles.scss
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ ├── typings.d.ts
│ │ └── vendor.ts
│ ├── tsconfig.json
│ └── tslint.json
├── angular5-bs4-seed
│ └── ng2angle
│ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ ├── karma.conf.js
│ ├── modernizr-config.json
│ ├── package.json
│ ├── package-lock.json
│ ├── protractor.conf.js
│ ├── README.md
│ ├── src
│ │ ├── app
│ │ │ ├── app.component.html
│ │ │ ├── app.component.scss
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── core
│ │ │ │ ├── core.module.ts
│ │ │ │ ├── menu
│ │ │ │ │ ├── menu.service.spec.ts
│ │ │ │ │ └── menu.service.ts
│ │ │ │ ├── module-import-guard.ts
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.component.html
│ │ │ │ │ ├── preloader.js
│ │ │ │ │ └── preloader.scss
│ │ │ │ ├── settings
│ │ │ │ │ ├── settings.service.spec.ts
│ │ │ │ │ └── settings.service.ts
│ │ │ │ ├── themes
│ │ │ │ │ ├── themes.service.spec.ts
│ │ │ │ │ └── themes.service.ts
│ │ │ │ └── translator
│ │ │ │ ├── translator.service.spec.ts
│ │ │ │ └── translator.service.ts
│ │ │ ├── index.ts
│ │ │ ├── layout
│ │ │ │ ├── footer
│ │ │ │ │ ├── footer.component.html
│ │ │ │ │ ├── footer.component.scss
│ │ │ │ │ ├── footer.component.spec.ts
│ │ │ │ │ └── footer.component.ts
│ │ │ │ ├── header
│ │ │ │ │ ├── header.component.h.html
│ │ │ │ │ ├── header.component.html
│ │ │ │ │ ├── header.component.scss
│ │ │ │ │ ├── header.component.spec.ts
│ │ │ │ │ ├── header.component.ts
│ │ │ │ │ └── navsearch
│ │ │ │ │ ├── navsearch.component.html
│ │ │ │ │ ├── navsearch.component.scss
│ │ │ │ │ ├── navsearch.component.spec.ts
│ │ │ │ │ └── navsearch.component.ts
│ │ │ │ ├── layout.component.h.html
│ │ │ │ ├── layout.component.html
│ │ │ │ ├── layout.component.scss
│ │ │ │ ├── layout.component.spec.ts
│ │ │ │ ├── layout.component.ts
│ │ │ │ ├── layout.module.ts
│ │ │ │ ├── offsidebar
│ │ │ │ │ ├── offsidebar.component.html
│ │ │ │ │ ├── offsidebar.component.scss
│ │ │ │ │ ├── offsidebar.component.spec.ts
│ │ │ │ │ └── offsidebar.component.ts
│ │ │ │ └── sidebar
│ │ │ │ ├── sidebar.component.html
│ │ │ │ ├── sidebar.component.scss
│ │ │ │ ├── sidebar.component.spec.ts
│ │ │ │ ├── sidebar.component.ts
│ │ │ │ └── userblock
│ │ │ │ ├── userblock.component.html
│ │ │ │ ├── userblock.component.scss
│ │ │ │ ├── userblock.component.spec.ts
│ │ │ │ ├── userblock.component.ts
│ │ │ │ ├── userblock.service.spec.ts
│ │ │ │ └── userblock.service.ts
│ │ │ ├── routes
│ │ │ │ ├── home
│ │ │ │ │ ├── home
│ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ ├── home.component.spec.ts
│ │ │ │ │ │ └── home.component.ts
│ │ │ │ │ └── home.module.ts
│ │ │ │ ├── menu.ts
│ │ │ │ ├── routes.module.ts
│ │ │ │ └── routes.ts
│ │ │ └── shared
│ │ │ ├── colors
│ │ │ │ └── colors.service.ts
│ │ │ ├── directives
│ │ │ │ ├── checkall
│ │ │ │ │ └── checkall.directive.ts
│ │ │ │ ├── easypiechart
│ │ │ │ │ └── easypiechart.directive.ts
│ │ │ │ ├── flot
│ │ │ │ │ └── flot.directive.ts
│ │ │ │ ├── jqcloud
│ │ │ │ │ └── jqcloud.directive.ts
│ │ │ │ ├── now
│ │ │ │ │ └── now.directive.ts
│ │ │ │ ├── scrollable
│ │ │ │ │ └── scrollable.directive.ts
│ │ │ │ ├── sparkline
│ │ │ │ │ └── sparkline.directive.ts
│ │ │ │ └── vectormap
│ │ │ │ └── vectormap.directive.ts
│ │ │ ├── shared.module.ts
│ │ │ └── styles
│ │ │ ├── app
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-custom.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── cards.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── inputs.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── user-block.scss
│ │ │ │ ├── utils.scss
│ │ │ │ └── variables.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── _alert.scss
│ │ │ │ ├── _badge.scss
│ │ │ │ ├── bootstrap-grid.scss
│ │ │ │ ├── bootstrap-reboot.scss
│ │ │ │ ├── bootstrap.scss
│ │ │ │ ├── _breadcrumb.scss
│ │ │ │ ├── _button-group.scss
│ │ │ │ ├── _buttons.scss
│ │ │ │ ├── _card.scss
│ │ │ │ ├── _carousel.scss
│ │ │ │ ├── _close.scss
│ │ │ │ ├── _code.scss
│ │ │ │ ├── _custom-forms.scss
│ │ │ │ ├── _dropdown.scss
│ │ │ │ ├── _forms.scss
│ │ │ │ ├── _functions.scss
│ │ │ │ ├── _grid.scss
│ │ │ │ ├── _images.scss
│ │ │ │ ├── _input-group.scss
│ │ │ │ ├── _jumbotron.scss
│ │ │ │ ├── _list-group.scss
│ │ │ │ ├── _media.scss
│ │ │ │ ├── mixins
│ │ │ │ │ ├── _alert.scss
│ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ ├── _badge.scss
│ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ ├── _box-shadow.scss
│ │ │ │ │ ├── _breakpoints.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _caret.scss
│ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ ├── _float.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _hover.scss
│ │ │ │ │ ├── _image.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _lists.scss
│ │ │ │ │ ├── _navbar-align.scss
│ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ ├── _resize.scss
│ │ │ │ │ ├── _screen-reader.scss
│ │ │ │ │ ├── _size.scss
│ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ ├── _text-hide.scss
│ │ │ │ │ ├── _text-truncate.scss
│ │ │ │ │ ├── _transition.scss
│ │ │ │ │ └── _visibility.scss
│ │ │ │ ├── _mixins.scss
│ │ │ │ ├── _modal.scss
│ │ │ │ ├── _navbar.scss
│ │ │ │ ├── _nav.scss
│ │ │ │ ├── _pagination.scss
│ │ │ │ ├── _popover.scss
│ │ │ │ ├── _print.scss
│ │ │ │ ├── _progress.scss
│ │ │ │ ├── _reboot.scss
│ │ │ │ ├── _root.scss
│ │ │ │ ├── _tables.scss
│ │ │ │ ├── _tooltip.scss
│ │ │ │ ├── _transitions.scss
│ │ │ │ ├── _type.scss
│ │ │ │ ├── utilities
│ │ │ │ │ ├── _align.scss
│ │ │ │ │ ├── _background.scss
│ │ │ │ │ ├── _borders.scss
│ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ ├── _display.scss
│ │ │ │ │ ├── _embed.scss
│ │ │ │ │ ├── _flex.scss
│ │ │ │ │ ├── _float.scss
│ │ │ │ │ ├── _position.scss
│ │ │ │ │ ├── _screenreaders.scss
│ │ │ │ │ ├── _sizing.scss
│ │ │ │ │ ├── _spacing.scss
│ │ │ │ │ ├── _text.scss
│ │ │ │ │ └── _visibility.scss
│ │ │ │ ├── _utilities.scss
│ │ │ │ └── _variables.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ ├── assets
│ │ │ ├── codemirror
│ │ │ │ ├── filetree.json
│ │ │ │ ├── mode
│ │ │ │ │ ├── apl
│ │ │ │ │ │ └── apl.js
│ │ │ │ │ ├── asciiarmor
│ │ │ │ │ │ └── asciiarmor.js
│ │ │ │ │ ├── asn.1
│ │ │ │ │ │ └── asn.1.js
│ │ │ │ │ ├── asterisk
│ │ │ │ │ │ └── asterisk.js
│ │ │ │ │ ├── brainfuck
│ │ │ │ │ │ └── brainfuck.js
│ │ │ │ │ ├── clike
│ │ │ │ │ │ └── clike.js
│ │ │ │ │ ├── clojure
│ │ │ │ │ │ └── clojure.js
│ │ │ │ │ ├── cmake
│ │ │ │ │ │ └── cmake.js
│ │ │ │ │ ├── cobol
│ │ │ │ │ │ └── cobol.js
│ │ │ │ │ ├── coffeescript
│ │ │ │ │ │ └── coffeescript.js
│ │ │ │ │ ├── commonlisp
│ │ │ │ │ │ └── commonlisp.js
│ │ │ │ │ ├── crystal
│ │ │ │ │ │ └── crystal.js
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── css.js
│ │ │ │ │ ├── cypher
│ │ │ │ │ │ └── cypher.js
│ │ │ │ │ ├── d
│ │ │ │ │ │ └── d.js
│ │ │ │ │ ├── dart
│ │ │ │ │ │ └── dart.js
│ │ │ │ │ ├── diff
│ │ │ │ │ │ └── diff.js
│ │ │ │ │ ├── django
│ │ │ │ │ │ └── django.js
│ │ │ │ │ ├── dockerfile
│ │ │ │ │ │ └── dockerfile.js
│ │ │ │ │ ├── dtd
│ │ │ │ │ │ └── dtd.js
│ │ │ │ │ ├── dylan
│ │ │ │ │ │ └── dylan.js
│ │ │ │ │ ├── ebnf
│ │ │ │ │ │ └── ebnf.js
│ │ │ │ │ ├── ecl
│ │ │ │ │ │ └── ecl.js
│ │ │ │ │ ├── eiffel
│ │ │ │ │ │ └── eiffel.js
│ │ │ │ │ ├── elm
│ │ │ │ │ │ └── elm.js
│ │ │ │ │ ├── erlang
│ │ │ │ │ │ └── erlang.js
│ │ │ │ │ ├── factor
│ │ │ │ │ │ └── factor.js
│ │ │ │ │ ├── fcl
│ │ │ │ │ │ └── fcl.js
│ │ │ │ │ ├── forth
│ │ │ │ │ │ └── forth.js
│ │ │ │ │ ├── fortran
│ │ │ │ │ │ └── fortran.js
│ │ │ │ │ ├── gas
│ │ │ │ │ │ └── gas.js
│ │ │ │ │ ├── gfm
│ │ │ │ │ │ └── gfm.js
│ │ │ │ │ ├── gherkin
│ │ │ │ │ │ └── gherkin.js
│ │ │ │ │ ├── go
│ │ │ │ │ │ └── go.js
│ │ │ │ │ ├── groovy
│ │ │ │ │ │ └── groovy.js
│ │ │ │ │ ├── haml
│ │ │ │ │ │ └── haml.js
│ │ │ │ │ ├── handlebars
│ │ │ │ │ │ └── handlebars.js
│ │ │ │ │ ├── haskell
│ │ │ │ │ │ └── haskell.js
│ │ │ │ │ ├── haskell-literate
│ │ │ │ │ │ └── haskell-literate.js
│ │ │ │ │ ├── haxe
│ │ │ │ │ │ └── haxe.js
│ │ │ │ │ ├── htmlembedded
│ │ │ │ │ │ └── htmlembedded.js
│ │ │ │ │ ├── htmlmixed
│ │ │ │ │ │ └── htmlmixed.js
│ │ │ │ │ ├── http
│ │ │ │ │ │ └── http.js
│ │ │ │ │ ├── idl
│ │ │ │ │ │ └── idl.js
│ │ │ │ │ ├── javascript
│ │ │ │ │ │ └── javascript.js
│ │ │ │ │ ├── jinja2
│ │ │ │ │ │ └── jinja2.js
│ │ │ │ │ ├── jsx
│ │ │ │ │ │ └── jsx.js
│ │ │ │ │ ├── julia
│ │ │ │ │ │ └── julia.js
│ │ │ │ │ ├── livescript
│ │ │ │ │ │ └── livescript.js
│ │ │ │ │ ├── lua
│ │ │ │ │ │ └── lua.js
│ │ │ │ │ ├── markdown
│ │ │ │ │ │ └── markdown.js
│ │ │ │ │ ├── mathematica
│ │ │ │ │ │ └── mathematica.js
│ │ │ │ │ ├── mbox
│ │ │ │ │ │ └── mbox.js
│ │ │ │ │ ├── meta.js
│ │ │ │ │ ├── mirc
│ │ │ │ │ │ └── mirc.js
│ │ │ │ │ ├── mllike
│ │ │ │ │ │ └── mllike.js
│ │ │ │ │ ├── modelica
│ │ │ │ │ │ └── modelica.js
│ │ │ │ │ ├── mscgen
│ │ │ │ │ │ └── mscgen.js
│ │ │ │ │ ├── mumps
│ │ │ │ │ │ └── mumps.js
│ │ │ │ │ ├── nginx
│ │ │ │ │ │ └── nginx.js
│ │ │ │ │ ├── nsis
│ │ │ │ │ │ └── nsis.js
│ │ │ │ │ ├── ntriples
│ │ │ │ │ │ └── ntriples.js
│ │ │ │ │ ├── octave
│ │ │ │ │ │ └── octave.js
│ │ │ │ │ ├── oz
│ │ │ │ │ │ └── oz.js
│ │ │ │ │ ├── pascal
│ │ │ │ │ │ └── pascal.js
│ │ │ │ │ ├── pegjs
│ │ │ │ │ │ └── pegjs.js
│ │ │ │ │ ├── perl
│ │ │ │ │ │ └── perl.js
│ │ │ │ │ ├── php
│ │ │ │ │ │ └── php.js
│ │ │ │ │ ├── pig
│ │ │ │ │ │ └── pig.js
│ │ │ │ │ ├── powershell
│ │ │ │ │ │ └── powershell.js
│ │ │ │ │ ├── properties
│ │ │ │ │ │ └── properties.js
│ │ │ │ │ ├── protobuf
│ │ │ │ │ │ └── protobuf.js
│ │ │ │ │ ├── pug
│ │ │ │ │ │ └── pug.js
│ │ │ │ │ ├── puppet
│ │ │ │ │ │ └── puppet.js
│ │ │ │ │ ├── python
│ │ │ │ │ │ └── python.js
│ │ │ │ │ ├── q
│ │ │ │ │ │ └── q.js
│ │ │ │ │ ├── r
│ │ │ │ │ │ └── r.js
│ │ │ │ │ ├── rpm
│ │ │ │ │ │ ├── changes
│ │ │ │ │ │ │ └── index.html
│ │ │ │ │ │ └── rpm.js
│ │ │ │ │ ├── rst
│ │ │ │ │ │ └── rst.js
│ │ │ │ │ ├── ruby
│ │ │ │ │ │ └── ruby.js
│ │ │ │ │ ├── rust
│ │ │ │ │ │ └── rust.js
│ │ │ │ │ ├── sas
│ │ │ │ │ │ └── sas.js
│ │ │ │ │ ├── sass
│ │ │ │ │ │ └── sass.js
│ │ │ │ │ ├── scheme
│ │ │ │ │ │ └── scheme.js
│ │ │ │ │ ├── shell
│ │ │ │ │ │ └── shell.js
│ │ │ │ │ ├── sieve
│ │ │ │ │ │ └── sieve.js
│ │ │ │ │ ├── slim
│ │ │ │ │ │ └── slim.js
│ │ │ │ │ ├── smalltalk
│ │ │ │ │ │ └── smalltalk.js
│ │ │ │ │ ├── smarty
│ │ │ │ │ │ └── smarty.js
│ │ │ │ │ ├── solr
│ │ │ │ │ │ └── solr.js
│ │ │ │ │ ├── soy
│ │ │ │ │ │ └── soy.js
│ │ │ │ │ ├── sparql
│ │ │ │ │ │ └── sparql.js
│ │ │ │ │ ├── spreadsheet
│ │ │ │ │ │ └── spreadsheet.js
│ │ │ │ │ ├── sql
│ │ │ │ │ │ └── sql.js
│ │ │ │ │ ├── stex
│ │ │ │ │ │ └── stex.js
│ │ │ │ │ ├── stylus
│ │ │ │ │ │ └── stylus.js
│ │ │ │ │ ├── swift
│ │ │ │ │ │ └── swift.js
│ │ │ │ │ ├── tcl
│ │ │ │ │ │ └── tcl.js
│ │ │ │ │ ├── textile
│ │ │ │ │ │ └── textile.js
│ │ │ │ │ ├── tiddlywiki
│ │ │ │ │ │ ├── tiddlywiki.css
│ │ │ │ │ │ └── tiddlywiki.js
│ │ │ │ │ ├── tiki
│ │ │ │ │ │ ├── tiki.css
│ │ │ │ │ │ └── tiki.js
│ │ │ │ │ ├── toml
│ │ │ │ │ │ └── toml.js
│ │ │ │ │ ├── tornado
│ │ │ │ │ │ └── tornado.js
│ │ │ │ │ ├── troff
│ │ │ │ │ │ └── troff.js
│ │ │ │ │ ├── ttcn
│ │ │ │ │ │ └── ttcn.js
│ │ │ │ │ ├── ttcn-cfg
│ │ │ │ │ │ └── ttcn-cfg.js
│ │ │ │ │ ├── turtle
│ │ │ │ │ │ └── turtle.js
│ │ │ │ │ ├── twig
│ │ │ │ │ │ └── twig.js
│ │ │ │ │ ├── vb
│ │ │ │ │ │ └── vb.js
│ │ │ │ │ ├── vbscript
│ │ │ │ │ │ └── vbscript.js
│ │ │ │ │ ├── velocity
│ │ │ │ │ │ └── velocity.js
│ │ │ │ │ ├── verilog
│ │ │ │ │ │ └── verilog.js
│ │ │ │ │ ├── vhdl
│ │ │ │ │ │ └── vhdl.js
│ │ │ │ │ ├── vue
│ │ │ │ │ │ └── vue.js
│ │ │ │ │ ├── webidl
│ │ │ │ │ │ └── webidl.js
│ │ │ │ │ ├── xml
│ │ │ │ │ │ └── xml.js
│ │ │ │ │ ├── xquery
│ │ │ │ │ │ └── xquery.js
│ │ │ │ │ ├── yacas
│ │ │ │ │ │ └── yacas.js
│ │ │ │ │ ├── yaml
│ │ │ │ │ │ └── yaml.js
│ │ │ │ │ ├── yaml-frontmatter
│ │ │ │ │ │ └── yaml-frontmatter.js
│ │ │ │ │ └── z80
│ │ │ │ │ └── z80.js
│ │ │ │ ├── source
│ │ │ │ │ ├── another.html
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── style.css
│ │ │ │ │ └── index.html
│ │ │ │ └── theme
│ │ │ │ ├── 3024-day.css
│ │ │ │ ├── 3024-night.css
│ │ │ │ ├── abcdef.css
│ │ │ │ ├── ambiance.css
│ │ │ │ ├── ambiance-mobile.css
│ │ │ │ ├── base16-dark.css
│ │ │ │ ├── base16-light.css
│ │ │ │ ├── bespin.css
│ │ │ │ ├── blackboard.css
│ │ │ │ ├── cobalt.css
│ │ │ │ ├── colorforth.css
│ │ │ │ ├── dracula.css
│ │ │ │ ├── duotone-dark.css
│ │ │ │ ├── duotone-light.css
│ │ │ │ ├── eclipse.css
│ │ │ │ ├── elegant.css
│ │ │ │ ├── erlang-dark.css
│ │ │ │ ├── hopscotch.css
│ │ │ │ ├── icecoder.css
│ │ │ │ ├── isotope.css
│ │ │ │ ├── lesser-dark.css
│ │ │ │ ├── liquibyte.css
│ │ │ │ ├── material.css
│ │ │ │ ├── mbo.css
│ │ │ │ ├── mdn-like.css
│ │ │ │ ├── midnight.css
│ │ │ │ ├── monokai.css
│ │ │ │ ├── neat.css
│ │ │ │ ├── neo.css
│ │ │ │ ├── night.css
│ │ │ │ ├── panda-syntax.css
│ │ │ │ ├── paraiso-dark.css
│ │ │ │ ├── paraiso-light.css
│ │ │ │ ├── pastel-on-dark.css
│ │ │ │ ├── railscasts.css
│ │ │ │ ├── rubyblue.css
│ │ │ │ ├── seti.css
│ │ │ │ ├── solarized.css
│ │ │ │ ├── the-matrix.css
│ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ ├── ttcn.css
│ │ │ │ ├── twilight.css
│ │ │ │ ├── vibrant-ink.css
│ │ │ │ ├── xq-dark.css
│ │ │ │ ├── xq-light.css
│ │ │ │ ├── yeti.css
│ │ │ │ └── zenburn.css
│ │ │ ├── company.json
│ │ │ ├── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── es_AR.json
│ │ │ ├── img
│ │ │ │ ├── angular.svg
│ │ │ │ ├── bg10.jpg
│ │ │ │ ├── bg1.jpg
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── bg3.jpg
│ │ │ │ ├── bg4.jpg
│ │ │ │ ├── bg5.jpg
│ │ │ │ ├── bg6.jpg
│ │ │ │ ├── bg7.jpg
│ │ │ │ ├── bg8.jpg
│ │ │ │ ├── bg9.jpg
│ │ │ │ ├── dummy.png
│ │ │ │ ├── lock-bg.jpg
│ │ │ │ ├── logo.png
│ │ │ │ ├── logo-single.png
│ │ │ │ ├── mb-sample.jpg
│ │ │ │ ├── mockup.png
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.empty.png
│ │ │ │ │ └── preloader.full.png
│ │ │ │ ├── profile-bg.jpg
│ │ │ │ └── user
│ │ │ │ ├── 01.jpg
│ │ │ │ ├── 02.jpg
│ │ │ │ ├── 03.jpg
│ │ │ │ ├── 04.jpg
│ │ │ │ ├── 05.jpg
│ │ │ │ ├── 06.jpg
│ │ │ │ ├── 07.jpg
│ │ │ │ ├── 08.jpg
│ │ │ │ ├── 09.jpg
│ │ │ │ ├── 10.jpg
│ │ │ │ ├── 11.jpg
│ │ │ │ ├── 12.jpg
│ │ │ │ └── 13.jpg
│ │ │ └── server
│ │ │ ├── ag-owinners.json
│ │ │ ├── chart
│ │ │ │ ├── area.json
│ │ │ │ ├── bar.json
│ │ │ │ ├── barstacked.json
│ │ │ │ ├── barstackedv2.json
│ │ │ │ ├── donut.json
│ │ │ │ ├── line.json
│ │ │ │ ├── pie.json
│ │ │ │ ├── realtime.json
│ │ │ │ ├── spline.json
│ │ │ │ ├── splinev2.json
│ │ │ │ └── splinev3.json
│ │ │ └── mails.json
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── modernizr.js
│ │ ├── polyfills.ts
│ │ ├── styles.scss
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ ├── typings.d.ts
│ │ └── vendor.ts
│ ├── tsconfig.json
│ └── tslint.json
├── angular5-seed
│ └── ng2angle
│ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ ├── karma.conf.js
│ ├── modernizr-config.json
│ ├── package.json
│ ├── package-lock.json
│ ├── protractor.conf.js
│ ├── README.md
│ ├── src
│ │ ├── app
│ │ │ ├── app.component.html
│ │ │ ├── app.component.scss
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── core
│ │ │ │ ├── core.module.ts
│ │ │ │ ├── menu
│ │ │ │ │ ├── menu.service.spec.ts
│ │ │ │ │ └── menu.service.ts
│ │ │ │ ├── module-import-guard.ts
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.component.html
│ │ │ │ │ ├── preloader.js
│ │ │ │ │ └── preloader.scss
│ │ │ │ ├── settings
│ │ │ │ │ ├── settings.service.spec.ts
│ │ │ │ │ └── settings.service.ts
│ │ │ │ ├── themes
│ │ │ │ │ ├── themes.service.spec.ts
│ │ │ │ │ └── themes.service.ts
│ │ │ │ └── translator
│ │ │ │ ├── translator.service.spec.ts
│ │ │ │ └── translator.service.ts
│ │ │ ├── index.ts
│ │ │ ├── layout
│ │ │ │ ├── footer
│ │ │ │ │ ├── footer.component.html
│ │ │ │ │ ├── footer.component.scss
│ │ │ │ │ ├── footer.component.spec.ts
│ │ │ │ │ └── footer.component.ts
│ │ │ │ ├── header
│ │ │ │ │ ├── header.component.h.html
│ │ │ │ │ ├── header.component.html
│ │ │ │ │ ├── header.component.scss
│ │ │ │ │ ├── header.component.spec.ts
│ │ │ │ │ ├── header.component.ts
│ │ │ │ │ └── navsearch
│ │ │ │ │ ├── navsearch.component.html
│ │ │ │ │ ├── navsearch.component.scss
│ │ │ │ │ ├── navsearch.component.spec.ts
│ │ │ │ │ └── navsearch.component.ts
│ │ │ │ ├── layout.component.h.html
│ │ │ │ ├── layout.component.html
│ │ │ │ ├── layout.component.scss
│ │ │ │ ├── layout.component.spec.ts
│ │ │ │ ├── layout.component.ts
│ │ │ │ ├── layout.module.ts
│ │ │ │ ├── offsidebar
│ │ │ │ │ ├── offsidebar.component.html
│ │ │ │ │ ├── offsidebar.component.scss
│ │ │ │ │ ├── offsidebar.component.spec.ts
│ │ │ │ │ └── offsidebar.component.ts
│ │ │ │ └── sidebar
│ │ │ │ ├── sidebar.component.html
│ │ │ │ ├── sidebar.component.scss
│ │ │ │ ├── sidebar.component.spec.ts
│ │ │ │ ├── sidebar.component.ts
│ │ │ │ └── userblock
│ │ │ │ ├── userblock.component.html
│ │ │ │ ├── userblock.component.scss
│ │ │ │ ├── userblock.component.spec.ts
│ │ │ │ ├── userblock.component.ts
│ │ │ │ ├── userblock.service.spec.ts
│ │ │ │ └── userblock.service.ts
│ │ │ ├── routes
│ │ │ │ ├── home
│ │ │ │ │ ├── home
│ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ ├── home.component.spec.ts
│ │ │ │ │ │ └── home.component.ts
│ │ │ │ │ └── home.module.ts
│ │ │ │ ├── menu.ts
│ │ │ │ ├── routes.module.ts
│ │ │ │ └── routes.ts
│ │ │ └── shared
│ │ │ ├── colors
│ │ │ │ └── colors.service.ts
│ │ │ ├── directives
│ │ │ │ ├── checkall
│ │ │ │ │ └── checkall.directive.ts
│ │ │ │ ├── easypiechart
│ │ │ │ │ └── easypiechart.directive.ts
│ │ │ │ ├── flot
│ │ │ │ │ └── flot.directive.ts
│ │ │ │ ├── jqcloud
│ │ │ │ │ └── jqcloud.directive.ts
│ │ │ │ ├── now
│ │ │ │ │ └── now.directive.ts
│ │ │ │ ├── scrollable
│ │ │ │ │ └── scrollable.directive.ts
│ │ │ │ ├── sparkline
│ │ │ │ │ └── sparkline.directive.ts
│ │ │ │ └── vectormap
│ │ │ │ └── vectormap.directive.ts
│ │ │ ├── shared.module.ts
│ │ │ └── styles
│ │ │ ├── app
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── breadcrumbs.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── form-elements.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── loading-bar.scss
│ │ │ │ ├── media-queries.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── panels.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── progress-extra.scss
│ │ │ │ ├── row-extra.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── table-extras.scss
│ │ │ │ ├── table-grid.scss
│ │ │ │ ├── todo.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── user-block.scss
│ │ │ │ ├── utils-definitions.scss
│ │ │ │ ├── utils.scss
│ │ │ │ ├── variables.scss
│ │ │ │ └── widget.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _badges.scss
│ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ ├── _close.scss
│ │ │ │ │ ├── _code.scss
│ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _media.scss
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modals.scss
│ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ ├── _navs.scss
│ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ ├── _pager.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ ├── _print.scss
│ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _tables.scss
│ │ │ │ │ ├── _theme.scss
│ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ ├── _variables.scss
│ │ │ │ │ └── _wells.scss
│ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ ├── _bootstrap.scss
│ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ ├── assets
│ │ │ ├── codemirror
│ │ │ │ ├── filetree.json
│ │ │ │ ├── mode
│ │ │ │ │ ├── apl
│ │ │ │ │ │ └── apl.js
│ │ │ │ │ ├── asciiarmor
│ │ │ │ │ │ └── asciiarmor.js
│ │ │ │ │ ├── asn.1
│ │ │ │ │ │ └── asn.1.js
│ │ │ │ │ ├── asterisk
│ │ │ │ │ │ └── asterisk.js
│ │ │ │ │ ├── brainfuck
│ │ │ │ │ │ └── brainfuck.js
│ │ │ │ │ ├── clike
│ │ │ │ │ │ └── clike.js
│ │ │ │ │ ├── clojure
│ │ │ │ │ │ └── clojure.js
│ │ │ │ │ ├── cmake
│ │ │ │ │ │ └── cmake.js
│ │ │ │ │ ├── cobol
│ │ │ │ │ │ └── cobol.js
│ │ │ │ │ ├── coffeescript
│ │ │ │ │ │ └── coffeescript.js
│ │ │ │ │ ├── commonlisp
│ │ │ │ │ │ └── commonlisp.js
│ │ │ │ │ ├── crystal
│ │ │ │ │ │ └── crystal.js
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── css.js
│ │ │ │ │ ├── cypher
│ │ │ │ │ │ └── cypher.js
│ │ │ │ │ ├── d
│ │ │ │ │ │ └── d.js
│ │ │ │ │ ├── dart
│ │ │ │ │ │ └── dart.js
│ │ │ │ │ ├── diff
│ │ │ │ │ │ └── diff.js
│ │ │ │ │ ├── django
│ │ │ │ │ │ └── django.js
│ │ │ │ │ ├── dockerfile
│ │ │ │ │ │ └── dockerfile.js
│ │ │ │ │ ├── dtd
│ │ │ │ │ │ └── dtd.js
│ │ │ │ │ ├── dylan
│ │ │ │ │ │ └── dylan.js
│ │ │ │ │ ├── ebnf
│ │ │ │ │ │ └── ebnf.js
│ │ │ │ │ ├── ecl
│ │ │ │ │ │ └── ecl.js
│ │ │ │ │ ├── eiffel
│ │ │ │ │ │ └── eiffel.js
│ │ │ │ │ ├── elm
│ │ │ │ │ │ └── elm.js
│ │ │ │ │ ├── erlang
│ │ │ │ │ │ └── erlang.js
│ │ │ │ │ ├── factor
│ │ │ │ │ │ └── factor.js
│ │ │ │ │ ├── fcl
│ │ │ │ │ │ └── fcl.js
│ │ │ │ │ ├── forth
│ │ │ │ │ │ └── forth.js
│ │ │ │ │ ├── fortran
│ │ │ │ │ │ └── fortran.js
│ │ │ │ │ ├── gas
│ │ │ │ │ │ └── gas.js
│ │ │ │ │ ├── gfm
│ │ │ │ │ │ └── gfm.js
│ │ │ │ │ ├── gherkin
│ │ │ │ │ │ └── gherkin.js
│ │ │ │ │ ├── go
│ │ │ │ │ │ └── go.js
│ │ │ │ │ ├── groovy
│ │ │ │ │ │ └── groovy.js
│ │ │ │ │ ├── haml
│ │ │ │ │ │ └── haml.js
│ │ │ │ │ ├── handlebars
│ │ │ │ │ │ └── handlebars.js
│ │ │ │ │ ├── haskell
│ │ │ │ │ │ └── haskell.js
│ │ │ │ │ ├── haskell-literate
│ │ │ │ │ │ └── haskell-literate.js
│ │ │ │ │ ├── haxe
│ │ │ │ │ │ └── haxe.js
│ │ │ │ │ ├── htmlembedded
│ │ │ │ │ │ └── htmlembedded.js
│ │ │ │ │ ├── htmlmixed
│ │ │ │ │ │ └── htmlmixed.js
│ │ │ │ │ ├── http
│ │ │ │ │ │ └── http.js
│ │ │ │ │ ├── idl
│ │ │ │ │ │ └── idl.js
│ │ │ │ │ ├── javascript
│ │ │ │ │ │ └── javascript.js
│ │ │ │ │ ├── jinja2
│ │ │ │ │ │ └── jinja2.js
│ │ │ │ │ ├── jsx
│ │ │ │ │ │ └── jsx.js
│ │ │ │ │ ├── julia
│ │ │ │ │ │ └── julia.js
│ │ │ │ │ ├── livescript
│ │ │ │ │ │ └── livescript.js
│ │ │ │ │ ├── lua
│ │ │ │ │ │ └── lua.js
│ │ │ │ │ ├── markdown
│ │ │ │ │ │ └── markdown.js
│ │ │ │ │ ├── mathematica
│ │ │ │ │ │ └── mathematica.js
│ │ │ │ │ ├── mbox
│ │ │ │ │ │ └── mbox.js
│ │ │ │ │ ├── meta.js
│ │ │ │ │ ├── mirc
│ │ │ │ │ │ └── mirc.js
│ │ │ │ │ ├── mllike
│ │ │ │ │ │ └── mllike.js
│ │ │ │ │ ├── modelica
│ │ │ │ │ │ └── modelica.js
│ │ │ │ │ ├── mscgen
│ │ │ │ │ │ └── mscgen.js
│ │ │ │ │ ├── mumps
│ │ │ │ │ │ └── mumps.js
│ │ │ │ │ ├── nginx
│ │ │ │ │ │ └── nginx.js
│ │ │ │ │ ├── nsis
│ │ │ │ │ │ └── nsis.js
│ │ │ │ │ ├── ntriples
│ │ │ │ │ │ └── ntriples.js
│ │ │ │ │ ├── octave
│ │ │ │ │ │ └── octave.js
│ │ │ │ │ ├── oz
│ │ │ │ │ │ └── oz.js
│ │ │ │ │ ├── pascal
│ │ │ │ │ │ └── pascal.js
│ │ │ │ │ ├── pegjs
│ │ │ │ │ │ └── pegjs.js
│ │ │ │ │ ├── perl
│ │ │ │ │ │ └── perl.js
│ │ │ │ │ ├── php
│ │ │ │ │ │ └── php.js
│ │ │ │ │ ├── pig
│ │ │ │ │ │ └── pig.js
│ │ │ │ │ ├── powershell
│ │ │ │ │ │ └── powershell.js
│ │ │ │ │ ├── properties
│ │ │ │ │ │ └── properties.js
│ │ │ │ │ ├── protobuf
│ │ │ │ │ │ └── protobuf.js
│ │ │ │ │ ├── pug
│ │ │ │ │ │ └── pug.js
│ │ │ │ │ ├── puppet
│ │ │ │ │ │ └── puppet.js
│ │ │ │ │ ├── python
│ │ │ │ │ │ └── python.js
│ │ │ │ │ ├── q
│ │ │ │ │ │ └── q.js
│ │ │ │ │ ├── r
│ │ │ │ │ │ └── r.js
│ │ │ │ │ ├── rpm
│ │ │ │ │ │ ├── changes
│ │ │ │ │ │ │ └── index.html
│ │ │ │ │ │ └── rpm.js
│ │ │ │ │ ├── rst
│ │ │ │ │ │ └── rst.js
│ │ │ │ │ ├── ruby
│ │ │ │ │ │ └── ruby.js
│ │ │ │ │ ├── rust
│ │ │ │ │ │ └── rust.js
│ │ │ │ │ ├── sas
│ │ │ │ │ │ └── sas.js
│ │ │ │ │ ├── sass
│ │ │ │ │ │ └── sass.js
│ │ │ │ │ ├── scheme
│ │ │ │ │ │ └── scheme.js
│ │ │ │ │ ├── shell
│ │ │ │ │ │ └── shell.js
│ │ │ │ │ ├── sieve
│ │ │ │ │ │ └── sieve.js
│ │ │ │ │ ├── slim
│ │ │ │ │ │ └── slim.js
│ │ │ │ │ ├── smalltalk
│ │ │ │ │ │ └── smalltalk.js
│ │ │ │ │ ├── smarty
│ │ │ │ │ │ └── smarty.js
│ │ │ │ │ ├── solr
│ │ │ │ │ │ └── solr.js
│ │ │ │ │ ├── soy
│ │ │ │ │ │ └── soy.js
│ │ │ │ │ ├── sparql
│ │ │ │ │ │ └── sparql.js
│ │ │ │ │ ├── spreadsheet
│ │ │ │ │ │ └── spreadsheet.js
│ │ │ │ │ ├── sql
│ │ │ │ │ │ └── sql.js
│ │ │ │ │ ├── stex
│ │ │ │ │ │ └── stex.js
│ │ │ │ │ ├── stylus
│ │ │ │ │ │ └── stylus.js
│ │ │ │ │ ├── swift
│ │ │ │ │ │ └── swift.js
│ │ │ │ │ ├── tcl
│ │ │ │ │ │ └── tcl.js
│ │ │ │ │ ├── textile
│ │ │ │ │ │ └── textile.js
│ │ │ │ │ ├── tiddlywiki
│ │ │ │ │ │ ├── tiddlywiki.css
│ │ │ │ │ │ └── tiddlywiki.js
│ │ │ │ │ ├── tiki
│ │ │ │ │ │ ├── tiki.css
│ │ │ │ │ │ └── tiki.js
│ │ │ │ │ ├── toml
│ │ │ │ │ │ └── toml.js
│ │ │ │ │ ├── tornado
│ │ │ │ │ │ └── tornado.js
│ │ │ │ │ ├── troff
│ │ │ │ │ │ └── troff.js
│ │ │ │ │ ├── ttcn
│ │ │ │ │ │ └── ttcn.js
│ │ │ │ │ ├── ttcn-cfg
│ │ │ │ │ │ └── ttcn-cfg.js
│ │ │ │ │ ├── turtle
│ │ │ │ │ │ └── turtle.js
│ │ │ │ │ ├── twig
│ │ │ │ │ │ └── twig.js
│ │ │ │ │ ├── vb
│ │ │ │ │ │ └── vb.js
│ │ │ │ │ ├── vbscript
│ │ │ │ │ │ └── vbscript.js
│ │ │ │ │ ├── velocity
│ │ │ │ │ │ └── velocity.js
│ │ │ │ │ ├── verilog
│ │ │ │ │ │ └── verilog.js
│ │ │ │ │ ├── vhdl
│ │ │ │ │ │ └── vhdl.js
│ │ │ │ │ ├── vue
│ │ │ │ │ │ └── vue.js
│ │ │ │ │ ├── webidl
│ │ │ │ │ │ └── webidl.js
│ │ │ │ │ ├── xml
│ │ │ │ │ │ └── xml.js
│ │ │ │ │ ├── xquery
│ │ │ │ │ │ └── xquery.js
│ │ │ │ │ ├── yacas
│ │ │ │ │ │ └── yacas.js
│ │ │ │ │ ├── yaml
│ │ │ │ │ │ └── yaml.js
│ │ │ │ │ ├── yaml-frontmatter
│ │ │ │ │ │ └── yaml-frontmatter.js
│ │ │ │ │ └── z80
│ │ │ │ │ └── z80.js
│ │ │ │ ├── source
│ │ │ │ │ ├── another.html
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── style.css
│ │ │ │ │ └── index.html
│ │ │ │ └── theme
│ │ │ │ ├── 3024-day.css
│ │ │ │ ├── 3024-night.css
│ │ │ │ ├── abcdef.css
│ │ │ │ ├── ambiance.css
│ │ │ │ ├── ambiance-mobile.css
│ │ │ │ ├── base16-dark.css
│ │ │ │ ├── base16-light.css
│ │ │ │ ├── bespin.css
│ │ │ │ ├── blackboard.css
│ │ │ │ ├── cobalt.css
│ │ │ │ ├── colorforth.css
│ │ │ │ ├── dracula.css
│ │ │ │ ├── duotone-dark.css
│ │ │ │ ├── duotone-light.css
│ │ │ │ ├── eclipse.css
│ │ │ │ ├── elegant.css
│ │ │ │ ├── erlang-dark.css
│ │ │ │ ├── hopscotch.css
│ │ │ │ ├── icecoder.css
│ │ │ │ ├── isotope.css
│ │ │ │ ├── lesser-dark.css
│ │ │ │ ├── liquibyte.css
│ │ │ │ ├── material.css
│ │ │ │ ├── mbo.css
│ │ │ │ ├── mdn-like.css
│ │ │ │ ├── midnight.css
│ │ │ │ ├── monokai.css
│ │ │ │ ├── neat.css
│ │ │ │ ├── neo.css
│ │ │ │ ├── night.css
│ │ │ │ ├── panda-syntax.css
│ │ │ │ ├── paraiso-dark.css
│ │ │ │ ├── paraiso-light.css
│ │ │ │ ├── pastel-on-dark.css
│ │ │ │ ├── railscasts.css
│ │ │ │ ├── rubyblue.css
│ │ │ │ ├── seti.css
│ │ │ │ ├── solarized.css
│ │ │ │ ├── the-matrix.css
│ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ ├── ttcn.css
│ │ │ │ ├── twilight.css
│ │ │ │ ├── vibrant-ink.css
│ │ │ │ ├── xq-dark.css
│ │ │ │ ├── xq-light.css
│ │ │ │ ├── yeti.css
│ │ │ │ └── zenburn.css
│ │ │ ├── company.json
│ │ │ ├── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── es_AR.json
│ │ │ ├── img
│ │ │ │ ├── angular.svg
│ │ │ │ ├── bg10.jpg
│ │ │ │ ├── bg1.jpg
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── bg3.jpg
│ │ │ │ ├── bg4.jpg
│ │ │ │ ├── bg5.jpg
│ │ │ │ ├── bg6.jpg
│ │ │ │ ├── bg7.jpg
│ │ │ │ ├── bg8.jpg
│ │ │ │ ├── bg9.jpg
│ │ │ │ ├── dummy.png
│ │ │ │ ├── lock-bg.jpg
│ │ │ │ ├── logo.png
│ │ │ │ ├── logo-single.png
│ │ │ │ ├── mb-sample.jpg
│ │ │ │ ├── mockup.png
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.empty.png
│ │ │ │ │ └── preloader.full.png
│ │ │ │ ├── profile-bg.jpg
│ │ │ │ └── user
│ │ │ │ ├── 01.jpg
│ │ │ │ ├── 02.jpg
│ │ │ │ ├── 03.jpg
│ │ │ │ ├── 04.jpg
│ │ │ │ ├── 05.jpg
│ │ │ │ ├── 06.jpg
│ │ │ │ ├── 07.jpg
│ │ │ │ ├── 08.jpg
│ │ │ │ ├── 09.jpg
│ │ │ │ ├── 10.jpg
│ │ │ │ ├── 11.jpg
│ │ │ │ ├── 12.jpg
│ │ │ │ └── 13.jpg
│ │ │ └── server
│ │ │ ├── ag-owinners.json
│ │ │ ├── chart
│ │ │ │ ├── area.json
│ │ │ │ ├── bar.json
│ │ │ │ ├── barstacked.json
│ │ │ │ ├── barstackedv2.json
│ │ │ │ ├── donut.json
│ │ │ │ ├── line.json
│ │ │ │ ├── pie.json
│ │ │ │ ├── realtime.json
│ │ │ │ ├── spline.json
│ │ │ │ ├── splinev2.json
│ │ │ │ └── splinev3.json
│ │ │ └── mails.json
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── modernizr.js
│ │ ├── polyfills.ts
│ │ ├── styles.scss
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ ├── typings.d.ts
│ │ └── vendor.ts
│ ├── tsconfig.json
│ └── tslint.json
├── backend-angular
│ ├── app
│ │ ├── css
│ │ │ ├── app.css
│ │ │ ├── app-rtl.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap-rtl.css
│ │ │ ├── theme-a.css
│ │ │ ├── theme-b.css
│ │ │ ├── theme-c.css
│ │ │ ├── theme-d.css
│ │ │ ├── theme-e.css
│ │ │ ├── theme-f.css
│ │ │ ├── theme-g.css
│ │ │ └── theme-h.css
│ │ ├── documentation
│ │ │ └── readme.md
│ │ ├── i18n
│ │ │ ├── en.json
│ │ │ └── es_AR.json
│ │ ├── img
│ │ │ ├── bg10.jpg
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.jpg
│ │ │ ├── bg3.jpg
│ │ │ ├── bg4.jpg
│ │ │ ├── bg5.jpg
│ │ │ ├── bg6.jpg
│ │ │ ├── bg7.jpg
│ │ │ ├── bg8.jpg
│ │ │ ├── bg9.jpg
│ │ │ ├── dummy.png
│ │ │ ├── lock-bg.jpg
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ ├── mb-sample.jpg
│ │ │ ├── mockup.png
│ │ │ ├── preloader
│ │ │ │ ├── preloader.empty.png
│ │ │ │ └── preloader.full.png
│ │ │ ├── profile-bg.jpg
│ │ │ └── user
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 04.jpg
│ │ │ ├── 05.jpg
│ │ │ ├── 06.jpg
│ │ │ ├── 07.jpg
│ │ │ ├── 08.jpg
│ │ │ ├── 09.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ └── 13.jpg
│ │ ├── js
│ │ │ ├── app.js
│ │ │ └── base.js
│ │ ├── pages
│ │ │ ├── 404.html
│ │ │ ├── 500.html
│ │ │ ├── lock.html
│ │ │ ├── login.html
│ │ │ ├── maintenance.html
│ │ │ ├── page.html
│ │ │ ├── recover.html
│ │ │ └── register.html
│ │ └── views
│ │ ├── app-h.html
│ │ ├── app.html
│ │ ├── blog-articles.html
│ │ ├── blog-article-view.html
│ │ ├── blog.html
│ │ ├── blog-post.html
│ │ ├── bug-tracker.html
│ │ ├── buttons.html
│ │ ├── calendar.html
│ │ ├── carousel.html
│ │ ├── chart-chartist.html
│ │ ├── chart-flot.html
│ │ ├── chart-js.html
│ │ ├── chart-morris.html
│ │ ├── chart-radial.html
│ │ ├── chart-rickshaw.html
│ │ ├── code-editor.html
│ │ ├── colors.html
│ │ ├── contact-details.html
│ │ ├── contacts.html
│ │ ├── dashboard.html
│ │ ├── dashboard_v2.html
│ │ ├── dashboard_v3.html
│ │ ├── documentation.html
│ │ ├── dropdown-animations.html
│ │ ├── ecommerce-checkout.html
│ │ ├── ecommerce-orders.html
│ │ ├── ecommerce-order-view.html
│ │ ├── ecommerce-products.html
│ │ ├── ecommerce-product-view.html
│ │ ├── faq.html
│ │ ├── file-manager.html
│ │ ├── followers.html
│ │ ├── form-extended.html
│ │ ├── form-imagecrop.html
│ │ ├── form-standard.html
│ │ ├── form-uiselect.html
│ │ ├── form-upload.html
│ │ ├── form-validation.html
│ │ ├── form-wizard.html
│ │ ├── form-xeditable.html
│ │ ├── forum-discussion.html
│ │ ├── forum.html
│ │ ├── forum-topics.html
│ │ ├── grid.html
│ │ ├── grid-masonry-deck-card.html
│ │ ├── grid-masonry-deck.html
│ │ ├── grid-masonry.html
│ │ ├── help-center.html
│ │ ├── icons-font.html
│ │ ├── icons-weather.html
│ │ ├── infinite-scroll.html
│ │ ├── interaction.html
│ │ ├── invoice.html
│ │ ├── localization.html
│ │ ├── mailbox-compose.html
│ │ ├── mailbox.html
│ │ ├── mailbox-inbox.html
│ │ ├── mailbox-view.html
│ │ ├── maps-google.html
│ │ ├── maps-vector.html
│ │ ├── nav-tree.html
│ │ ├── nestable.html
│ │ ├── ngdialog.html
│ │ ├── ngdialog-template.html
│ │ ├── notifications.html
│ │ ├── panels.html
│ │ ├── partials
│ │ │ ├── chat.html
│ │ │ ├── footer.html
│ │ │ ├── offsidebar.html
│ │ │ ├── settings.html
│ │ │ ├── sidebar.html
│ │ │ ├── top-navbar-h.html
│ │ │ └── top-navbar.html
│ │ ├── plans.html
│ │ ├── portlets.html
│ │ ├── profile.html
│ │ ├── project-details.html
│ │ ├── projects.html
│ │ ├── search.html
│ │ ├── settings.html
│ │ ├── social-board.html
│ │ ├── sortable.html
│ │ ├── spinners.html
│ │ ├── sweetalert.html
│ │ ├── table-angulargrid.html
│ │ ├── table-datatable.html
│ │ ├── table-extended.html
│ │ ├── table-ngtable.html
│ │ ├── table-standard.html
│ │ ├── table-uigrid.html
│ │ ├── table-xeditable.html
│ │ ├── team-viewer.html
│ │ ├── template.html
│ │ ├── timeline.html
│ │ ├── todo.html
│ │ ├── tour.html
│ │ ├── typo.html
│ │ ├── vote-links.html
│ │ └── widgets.html
│ ├── index.html
│ ├── master
│ │ ├── bower.json
│ │ ├── gulpfile.js
│ │ ├── js
│ │ │ ├── app.module.js
│ │ │ ├── custom
│ │ │ │ ├── custom.controller.js
│ │ │ │ ├── custom.module.js
│ │ │ │ └── README.txt
│ │ │ └── modules
│ │ │ ├── bootstrapui
│ │ │ │ ├── alerts.controller.js
│ │ │ │ ├── bootstrapui.config.js
│ │ │ │ ├── bootstrapui.module.js
│ │ │ │ ├── buttons.controller.js
│ │ │ │ ├── carousel.controller.js
│ │ │ │ ├── datepicker.controller.js
│ │ │ │ ├── modals.controller.js
│ │ │ │ ├── pagination.controller.js
│ │ │ │ ├── popover.controller.js
│ │ │ │ ├── progress.controller.js
│ │ │ │ ├── rating.controller.js
│ │ │ │ ├── timepicker.controller.js
│ │ │ │ ├── tooltip.controller.js
│ │ │ │ └── typeahead.controller.js
│ │ │ ├── charts
│ │ │ │ ├── chartist.controller.js
│ │ │ │ ├── chartjs.controller.js
│ │ │ │ ├── charts.module.js
│ │ │ │ ├── flot.controller.js
│ │ │ │ ├── flot-data.service.js
│ │ │ │ ├── flot.directive.js
│ │ │ │ ├── morris.controller.js
│ │ │ │ ├── morris.directive.js
│ │ │ │ ├── piecharts.controller.js
│ │ │ │ ├── rickshaw.controller.js
│ │ │ │ └── sparklines.directive.js
│ │ │ ├── colors
│ │ │ │ ├── colors.contant.js
│ │ │ │ ├── colors.module.js
│ │ │ │ └── colors.service.js
│ │ │ ├── core
│ │ │ │ ├── core.config.js
│ │ │ │ ├── core.constants.js
│ │ │ │ ├── core.module.js
│ │ │ │ └── core.run.js
│ │ │ ├── dashboard
│ │ │ │ ├── dashboard.controller.js
│ │ │ │ ├── dashboard.module.js
│ │ │ │ ├── dashboard.v2.controller.js
│ │ │ │ └── dashboard.v3.controller.js
│ │ │ ├── elements
│ │ │ │ ├── carousel.controller.js
│ │ │ │ ├── dialog.controller.js
│ │ │ │ ├── elements.module.js
│ │ │ │ ├── infinite-scroll.controller.js
│ │ │ │ ├── masonry-deck.controller.js
│ │ │ │ ├── navtree.controller.js
│ │ │ │ ├── nestable.controller.js
│ │ │ │ ├── scroll.directive.js
│ │ │ │ ├── sortable.controller.js
│ │ │ │ ├── sweetalert.controller.js
│ │ │ │ ├── toaster.controller.js
│ │ │ │ └── tour.controller.js
│ │ │ ├── extras
│ │ │ │ ├── article.controller.js
│ │ │ │ ├── calendar.controller.js
│ │ │ │ ├── code-editor.controller.js
│ │ │ │ ├── code-editor-loadtree.service.js
│ │ │ │ ├── extras.module.js
│ │ │ │ ├── todo.controller.js
│ │ │ │ └── word-cloud.controller.js
│ │ │ ├── flatdoc
│ │ │ │ ├── flatdoc.directive.js
│ │ │ │ └── flatdoc.module.js
│ │ │ ├── forms
│ │ │ │ ├── color-picker.controller.js
│ │ │ │ ├── filestyle.directive.js
│ │ │ │ ├── form-imgcrop.controller.js
│ │ │ │ ├── forms.controller.js
│ │ │ │ ├── forms.module.js
│ │ │ │ ├── form-validation.controller.js
│ │ │ │ ├── form-wizard.directive.js
│ │ │ │ ├── form-xeditable.controller.js
│ │ │ │ ├── masked.directive.js
│ │ │ │ ├── props.filter.js
│ │ │ │ ├── tags-input.directive.js
│ │ │ │ ├── uiselect.controller.js
│ │ │ │ └── upload.controller.js
│ │ │ ├── icons
│ │ │ │ ├── icons.module.js
│ │ │ │ └── icons-skycons.directive.js
│ │ │ ├── lazyload
│ │ │ │ ├── lazyload.config.js
│ │ │ │ ├── lazyload.constants.js
│ │ │ │ └── lazyload.module.js
│ │ │ ├── loadingbar
│ │ │ │ ├── loadingbar.config.js
│ │ │ │ ├── loadingbar.module.js
│ │ │ │ └── loadingbar.run.js
│ │ │ ├── locale
│ │ │ │ ├── locale.config.js
│ │ │ │ ├── locale.controller.js
│ │ │ │ └── locale.module.js
│ │ │ ├── mailbox
│ │ │ │ ├── mailbox.controller.js
│ │ │ │ ├── mailbox.module.js
│ │ │ │ ├── mailfolder.controller.js
│ │ │ │ ├── mails.service.js
│ │ │ │ └── mailview.controller.js
│ │ │ ├── maps
│ │ │ │ ├── maps-google.controller.js
│ │ │ │ ├── maps-google-modal.controller.js
│ │ │ │ ├── maps.module.js
│ │ │ │ ├── vector-map.directive.js
│ │ │ │ ├── vector-maps.controller.js
│ │ │ │ └── vector-map.service.js
│ │ │ ├── navsearch
│ │ │ │ ├── navsearch.directive.js
│ │ │ │ ├── navsearch.module.js
│ │ │ │ └── navsearch.service.js
│ │ │ ├── notify
│ │ │ │ ├── notify.controller.js
│ │ │ │ ├── notify.directive.js
│ │ │ │ ├── notify.module.js
│ │ │ │ └── notify.service.js
│ │ │ ├── pages
│ │ │ │ ├── access-login.controller.js
│ │ │ │ ├── access-register.controller.js
│ │ │ │ └── pages.module.js
│ │ │ ├── panels
│ │ │ │ ├── panel-collapse.directive.js
│ │ │ │ ├── panel-dismiss.directive.js
│ │ │ │ ├── panel-refresh.directive.js
│ │ │ │ ├── panels.controller.js
│ │ │ │ ├── panels.module.js
│ │ │ │ ├── panel-tools.directive.js
│ │ │ │ └── portlet.controller.js
│ │ │ ├── preloader
│ │ │ │ ├── preloader.directive.js
│ │ │ │ └── preloader.module.js
│ │ │ ├── routes
│ │ │ │ ├── route-helpers.provider.js
│ │ │ │ ├── routes.config.js
│ │ │ │ └── routes.module.js
│ │ │ ├── settings
│ │ │ │ ├── settings.module.js
│ │ │ │ └── settings.run.js
│ │ │ ├── sidebar
│ │ │ │ ├── sidebar.controller.js
│ │ │ │ ├── sidebar.directive.js
│ │ │ │ ├── sidebar.module.js
│ │ │ │ ├── sidebar.service.js
│ │ │ │ └── sidebar.userblock.controller.js
│ │ │ ├── tables
│ │ │ │ ├── angular-grid.controller.js
│ │ │ │ ├── datatable.controller.js
│ │ │ │ ├── ngtable.controller.js
│ │ │ │ ├── ngtable-data.service.js
│ │ │ │ ├── tables.module.js
│ │ │ │ ├── table-xeditable.controller.js
│ │ │ │ └── uigrid.controller.js
│ │ │ ├── translate
│ │ │ │ ├── translate.config.js
│ │ │ │ ├── translate.module.js
│ │ │ │ └── translate.run.js
│ │ │ └── utils
│ │ │ ├── animate-enabled.directive.js
│ │ │ ├── browser.service.js
│ │ │ ├── clear-storage.directive.js
│ │ │ ├── fullscreen.directive.js
│ │ │ ├── load-css.directive.js
│ │ │ ├── now.directive.js
│ │ │ ├── table-checkall.directive.js
│ │ │ ├── trigger-resize.directive.js
│ │ │ ├── utils.module.js
│ │ │ └── utils.service.js
│ │ ├── less
│ │ │ ├── app
│ │ │ │ ├── alerts.less
│ │ │ │ ├── animate.less
│ │ │ │ ├── bootstrap-reset.less
│ │ │ │ ├── breadcrumbs.less
│ │ │ │ ├── button-extra.less
│ │ │ │ ├── calendar.less
│ │ │ │ ├── carousel.less
│ │ │ │ ├── chart-easypie.less
│ │ │ │ ├── chart-flot.less
│ │ │ │ ├── circles.less
│ │ │ │ ├── code-editor.less
│ │ │ │ ├── datatable.less
│ │ │ │ ├── datepicker.less
│ │ │ │ ├── docs.less
│ │ │ │ ├── dropdown-extra.less
│ │ │ │ ├── form-elements.less
│ │ │ │ ├── form-imgcrop.less
│ │ │ │ ├── form-tags.less
│ │ │ │ ├── form-validation.less
│ │ │ │ ├── form-wizard.less
│ │ │ │ ├── gmap.less
│ │ │ │ ├── half-float.less
│ │ │ │ ├── layout-animation.less
│ │ │ │ ├── layout-extra.less
│ │ │ │ ├── layout.less
│ │ │ │ ├── loading-bar.less
│ │ │ │ ├── mailbox.less
│ │ │ │ ├── masonry-grid-deck.less
│ │ │ │ ├── masonry-grid.less
│ │ │ │ ├── media-queries.less
│ │ │ │ ├── nestable.less
│ │ │ │ ├── ngdialog.less
│ │ │ │ ├── ngwig.less
│ │ │ │ ├── notify.less
│ │ │ │ ├── offsidebar.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── placeholder.less
│ │ │ │ ├── plans.less
│ │ │ │ ├── plugins.less
│ │ │ │ ├── portlets.less
│ │ │ │ ├── preloader.less
│ │ │ │ ├── print.less
│ │ │ │ ├── progress-extra.less
│ │ │ │ ├── radial-bar.less
│ │ │ │ ├── row-extra.less
│ │ │ │ ├── settings.less
│ │ │ │ ├── sidebar.less
│ │ │ │ ├── slim-scroll.less
│ │ │ │ ├── spinner.less
│ │ │ │ ├── table-angulargrid.less
│ │ │ │ ├── table-extras.less
│ │ │ │ ├── table-grid.less
│ │ │ │ ├── table-ngtable.less
│ │ │ │ ├── table-uigrid.less
│ │ │ │ ├── timeline.less
│ │ │ │ ├── todo.less
│ │ │ │ ├── top-navbar.less
│ │ │ │ ├── typeahead.less
│ │ │ │ ├── typo.less
│ │ │ │ ├── uiselect.less
│ │ │ │ ├── user-block.less
│ │ │ │ ├── utils.less
│ │ │ │ ├── vector-map.less
│ │ │ │ └── widget.less
│ │ │ ├── app.less
│ │ │ ├── bootstrap
│ │ │ │ ├── alerts.less
│ │ │ │ ├── badges.less
│ │ │ │ ├── bootstrap.less
│ │ │ │ ├── breadcrumbs.less
│ │ │ │ ├── button-groups.less
│ │ │ │ ├── buttons.less
│ │ │ │ ├── carousel.less
│ │ │ │ ├── close.less
│ │ │ │ ├── code.less
│ │ │ │ ├── component-animations.less
│ │ │ │ ├── dropdowns.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── glyphicons.less
│ │ │ │ ├── grid.less
│ │ │ │ ├── input-groups.less
│ │ │ │ ├── jumbotron.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── media.less
│ │ │ │ ├── mixins
│ │ │ │ │ ├── alerts.less
│ │ │ │ │ ├── background-variant.less
│ │ │ │ │ ├── border-radius.less
│ │ │ │ │ ├── buttons.less
│ │ │ │ │ ├── center-block.less
│ │ │ │ │ ├── clearfix.less
│ │ │ │ │ ├── forms.less
│ │ │ │ │ ├── gradients.less
│ │ │ │ │ ├── grid-framework.less
│ │ │ │ │ ├── grid.less
│ │ │ │ │ ├── hide-text.less
│ │ │ │ │ ├── image.less
│ │ │ │ │ ├── labels.less
│ │ │ │ │ ├── list-group.less
│ │ │ │ │ ├── nav-divider.less
│ │ │ │ │ ├── nav-vertical-align.less
│ │ │ │ │ ├── opacity.less
│ │ │ │ │ ├── pagination.less
│ │ │ │ │ ├── panels.less
│ │ │ │ │ ├── progress-bar.less
│ │ │ │ │ ├── reset-filter.less
│ │ │ │ │ ├── reset-text.less
│ │ │ │ │ ├── resize.less
│ │ │ │ │ ├── responsive-visibility.less
│ │ │ │ │ ├── size.less
│ │ │ │ │ ├── tab-focus.less
│ │ │ │ │ ├── table-row.less
│ │ │ │ │ ├── text-emphasis.less
│ │ │ │ │ ├── text-overflow.less
│ │ │ │ │ └── vendor-prefixes.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── modals.less
│ │ │ │ ├── navbar.less
│ │ │ │ ├── navs.less
│ │ │ │ ├── normalize.less
│ │ │ │ ├── pager.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── popovers.less
│ │ │ │ ├── print.less
│ │ │ │ ├── progress-bars.less
│ │ │ │ ├── responsive-embed.less
│ │ │ │ ├── responsive-utilities.less
│ │ │ │ ├── scaffolding.less
│ │ │ │ ├── tables.less
│ │ │ │ ├── theme.less
│ │ │ │ ├── thumbnails.less
│ │ │ │ ├── tooltip.less
│ │ │ │ ├── type.less
│ │ │ │ ├── utilities.less
│ │ │ │ ├── variables.less
│ │ │ │ └── wells.less
│ │ │ ├── bootstrap.less
│ │ │ └── themes
│ │ │ ├── theme-a.less
│ │ │ ├── theme-b.less
│ │ │ ├── theme-c.less
│ │ │ ├── theme-d.less
│ │ │ ├── theme-e.less
│ │ │ ├── theme-f.less
│ │ │ ├── theme-g.less
│ │ │ └── theme-h.less
│ │ ├── package.json
│ │ ├── package-lock.json
│ │ ├── pug
│ │ │ ├── index.pug
│ │ │ ├── pages
│ │ │ │ ├── 404.pug
│ │ │ │ ├── 500.pug
│ │ │ │ ├── lock.pug
│ │ │ │ ├── login.pug
│ │ │ │ ├── maintenance.pug
│ │ │ │ ├── page.pug
│ │ │ │ ├── recover.pug
│ │ │ │ └── register.pug
│ │ │ └── views
│ │ │ ├── app-h.pug
│ │ │ ├── app.pug
│ │ │ ├── blog-articles.pug
│ │ │ ├── blog-article-view.pug
│ │ │ ├── blog-post.pug
│ │ │ ├── blog.pug
│ │ │ ├── bug-tracker.pug
│ │ │ ├── buttons.pug
│ │ │ ├── calendar.pug
│ │ │ ├── carousel.pug
│ │ │ ├── chart-chartist.pug
│ │ │ ├── chart-flot.pug
│ │ │ ├── chart-js.pug
│ │ │ ├── chart-morris.pug
│ │ │ ├── chart-radial.pug
│ │ │ ├── chart-rickshaw.pug
│ │ │ ├── code-editor.pug
│ │ │ ├── colors.pug
│ │ │ ├── contact-details.pug
│ │ │ ├── contacts.pug
│ │ │ ├── dashboard.pug
│ │ │ ├── dashboard_v2.pug
│ │ │ ├── dashboard_v3.pug
│ │ │ ├── documentation.pug
│ │ │ ├── dropdown-animations.pug
│ │ │ ├── ecommerce-checkout.pug
│ │ │ ├── ecommerce-orders.pug
│ │ │ ├── ecommerce-order-view.pug
│ │ │ ├── ecommerce-products.pug
│ │ │ ├── ecommerce-product-view.pug
│ │ │ ├── faq.pug
│ │ │ ├── file-manager.pug
│ │ │ ├── followers.pug
│ │ │ ├── form-extended.pug
│ │ │ ├── form-imagecrop.pug
│ │ │ ├── form-standard.pug
│ │ │ ├── form-uiselect.pug
│ │ │ ├── form-upload.pug
│ │ │ ├── form-validation.pug
│ │ │ ├── form-wizard.pug
│ │ │ ├── form-xeditable.pug
│ │ │ ├── forum-discussion.pug
│ │ │ ├── forum.pug
│ │ │ ├── forum-topics.pug
│ │ │ ├── grid-masonry-deck-card.pug
│ │ │ ├── grid-masonry-deck.pug
│ │ │ ├── grid-masonry.pug
│ │ │ ├── grid.pug
│ │ │ ├── help-center.pug
│ │ │ ├── icons-font.pug
│ │ │ ├── icons-weather.pug
│ │ │ ├── infinite-scroll.pug
│ │ │ ├── interaction.pug
│ │ │ ├── invoice.pug
│ │ │ ├── localization.pug
│ │ │ ├── mailbox-compose.pug
│ │ │ ├── mailbox-inbox.pug
│ │ │ ├── mailbox.pug
│ │ │ ├── mailbox-view.pug
│ │ │ ├── maps-google.pug
│ │ │ ├── maps-vector.pug
│ │ │ ├── nav-tree.pug
│ │ │ ├── nestable.pug
│ │ │ ├── ngdialog.pug
│ │ │ ├── ngdialog-template.pug
│ │ │ ├── notifications.pug
│ │ │ ├── panels.pug
│ │ │ ├── partials
│ │ │ │ ├── chat.pug
│ │ │ │ ├── footer.pug
│ │ │ │ ├── offsidebar.pug
│ │ │ │ ├── settings.pug
│ │ │ │ ├── sidebar.pug
│ │ │ │ ├── top-navbar-h.pug
│ │ │ │ └── top-navbar.pug
│ │ │ ├── plans.pug
│ │ │ ├── portlets.pug
│ │ │ ├── profile.pug
│ │ │ ├── project-details.pug
│ │ │ ├── projects.pug
│ │ │ ├── search.pug
│ │ │ ├── settings.pug
│ │ │ ├── social-board.pug
│ │ │ ├── sortable.pug
│ │ │ ├── spinners.pug
│ │ │ ├── sweetalert.pug
│ │ │ ├── table-angulargrid.pug
│ │ │ ├── table-datatable.pug
│ │ │ ├── table-extended.pug
│ │ │ ├── table-ngtable.pug
│ │ │ ├── table-standard.pug
│ │ │ ├── table-uigrid.pug
│ │ │ ├── table-xeditable.pug
│ │ │ ├── team-viewer.pug
│ │ │ ├── template.pug
│ │ │ ├── timeline.pug
│ │ │ ├── todo.pug
│ │ │ ├── tour.pug
│ │ │ ├── typo.pug
│ │ │ ├── vote-links.pug
│ │ │ └── widgets.pug
│ │ ├── sass
│ │ │ ├── app
│ │ │ │ ├── alerts.scss
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── breadcrumbs.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── calendar.scss
│ │ │ │ ├── carousel.scss
│ │ │ │ ├── chart-easypie.scss
│ │ │ │ ├── chart-flot.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── code-editor.scss
│ │ │ │ ├── datatable.scss
│ │ │ │ ├── datepicker.scss
│ │ │ │ ├── docs.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── form-elements.scss
│ │ │ │ ├── form-imgcrop.scss
│ │ │ │ ├── form-tags.scss
│ │ │ │ ├── form-validation.scss
│ │ │ │ ├── form-wizard.scss
│ │ │ │ ├── gmap.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── loading-bar.scss
│ │ │ │ ├── mailbox.scss
│ │ │ │ ├── masonry-grid-deck.scss
│ │ │ │ ├── masonry-grid.scss
│ │ │ │ ├── media-queries.scss
│ │ │ │ ├── nestable.scss
│ │ │ │ ├── ngdialog.scss
│ │ │ │ ├── ngwig.scss
│ │ │ │ ├── notify.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── panels.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── plans.scss
│ │ │ │ ├── plugins.scss
│ │ │ │ ├── portlets.scss
│ │ │ │ ├── preloader.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── progress-extra.scss
│ │ │ │ ├── radial-bar.scss
│ │ │ │ ├── row-extra.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── spinner.scss
│ │ │ │ ├── table-angulargrid.scss
│ │ │ │ ├── table-extras.scss
│ │ │ │ ├── table-grid.scss
│ │ │ │ ├── table-ngtable.scss
│ │ │ │ ├── table-uigrid.scss
│ │ │ │ ├── timeline.scss
│ │ │ │ ├── todo.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typeahead.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── uiselect.scss
│ │ │ │ ├── user-block.scss
│ │ │ │ ├── utils-definitions.scss
│ │ │ │ ├── utils.scss
│ │ │ │ ├── variables.scss
│ │ │ │ ├── vector-map.scss
│ │ │ │ └── widget.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _badges.scss
│ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ ├── _close.scss
│ │ │ │ │ ├── _code.scss
│ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _media.scss
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modals.scss
│ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ ├── _navs.scss
│ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ ├── _pager.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ ├── _print.scss
│ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _tables.scss
│ │ │ │ │ ├── _theme.scss
│ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ ├── _variables.scss
│ │ │ │ │ └── _wells.scss
│ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ ├── _bootstrap.scss
│ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ ├── tests
│ │ │ ├── e2e
│ │ │ │ └── dashboard.e2e.js
│ │ │ ├── karma.conf.js
│ │ │ ├── protractor.conf.js
│ │ │ └── unit
│ │ │ └── dashboard.spec.js
│ │ ├── vendor.base.json
│ │ └── vendor.json
│ ├── server
│ │ ├── ag-owinners.json
│ │ ├── chart
│ │ │ ├── area.json
│ │ │ ├── bar.json
│ │ │ ├── barstacked.json
│ │ │ ├── barstackedv2.json
│ │ │ ├── donut.json
│ │ │ ├── line.json
│ │ │ ├── pie.json
│ │ │ ├── realtime.json
│ │ │ ├── spline.json
│ │ │ ├── splinev2.json
│ │ │ └── splinev3.json
│ │ ├── chosen-states.json
│ │ ├── cities.json
│ │ ├── datatable.json
│ │ ├── editor
│ │ │ ├── filetree.json
│ │ │ └── source
│ │ │ ├── another.html
│ │ │ ├── css
│ │ │ │ └── style.css
│ │ │ ├── index.html
│ │ │ └── js
│ │ │ └── script.js
│ │ ├── mails.json
│ │ ├── ng-grid-data.json
│ │ ├── sidebar-menu.json
│ │ ├── table-data.json
│ │ ├── treedata.json
│ │ ├── uigrid-100.json
│ │ ├── uigrid-complex.json
│ │ ├── upload.php
│ │ └── xeditable-groups.json
│ └── vendor
│ ├── ag-grid
│ │ └── dist
│ │ ├── ag-grid.js
│ │ └── styles
│ │ ├── ag-grid.css
│ │ ├── theme-dark.css
│ │ └── theme-fresh.css
│ ├── angular-bootstrap-colorpicker
│ │ ├── css
│ │ │ └── colorpicker.css
│ │ ├── img
│ │ │ ├── alpha.png
│ │ │ ├── hue.png
│ │ │ └── saturation.png
│ │ └── js
│ │ └── bootstrap-colorpicker-module.js
│ ├── angular-bootstrap-nav-tree
│ │ └── dist
│ │ ├── abn_tree.css
│ │ └── abn_tree_directive.js
│ ├── angular-bootstrap-slider
│ │ └── slider.js
│ ├── angular-bootstrap-tour
│ │ └── dist
│ │ └── angular-bootstrap-tour.js
│ ├── angular-carousel
│ │ └── dist
│ │ ├── angular-carousel.css
│ │ └── angular-carousel.js
│ ├── angular-chartist.js
│ │ └── dist
│ │ └── angular-chartist.js
│ ├── angular-chart.js
│ │ └── dist
│ │ └── angular-chart.js
│ ├── angular-chosen-localytics
│ │ └── dist
│ │ └── angular-chosen.js
│ ├── angular-datatables
│ │ └── dist
│ │ ├── angular-datatables.js
│ │ ├── angular-datatables.min.js
│ │ ├── css
│ │ │ ├── angular-datatables.css
│ │ │ └── angular-datatables.min.css
│ │ └── plugins
│ │ ├── bootstrap
│ │ │ ├── angular-datatables.bootstrap.js
│ │ │ ├── angular-datatables.bootstrap.min.js
│ │ │ └── datatables.bootstrap.min.css
│ │ ├── buttons
│ │ │ ├── angular-datatables.buttons.js
│ │ │ └── angular-datatables.buttons.min.js
│ │ ├── colreorder
│ │ │ ├── angular-datatables.colreorder.js
│ │ │ └── angular-datatables.colreorder.min.js
│ │ ├── columnfilter
│ │ │ ├── angular-datatables.columnfilter.js
│ │ │ └── angular-datatables.columnfilter.min.js
│ │ ├── colvis
│ │ │ ├── angular-datatables.colvis.js
│ │ │ └── angular-datatables.colvis.min.js
│ │ ├── fixedcolumns
│ │ │ ├── angular-datatables.fixedcolumns.js
│ │ │ └── angular-datatables.fixedcolumns.min.js
│ │ ├── fixedheader
│ │ │ ├── angular-datatables.fixedheader.js
│ │ │ └── angular-datatables.fixedheader.min.js
│ │ ├── light-columnfilter
│ │ │ ├── angular-datatables.light-columnfilter.js
│ │ │ └── angular-datatables.light-columnfilter.min.js
│ │ ├── scroller
│ │ │ ├── angular-datatables.scroller.js
│ │ │ └── angular-datatables.scroller.min.js
│ │ ├── select
│ │ │ ├── angular-datatables.select.js
│ │ │ └── angular-datatables.select.min.js
│ │ └── tabletools
│ │ ├── angular-datatables.tabletools.js
│ │ └── angular-datatables.tabletools.min.js
│ ├── angular-deckgrid
│ │ └── angular-deckgrid.js
│ ├── angular-file-upload
│ │ └── dist
│ │ └── angular-file-upload.js
│ ├── angular-i18n
│ │ ├── angular-locale_ar.js
│ │ ├── angular-locale_de.js
│ │ ├── angular-locale_en.js
│ │ ├── angular-locale_es.js
│ │ ├── angular-locale_fr.js
│ │ ├── angular-locale_ja.js
│ │ ├── angular-locale_ko.js
│ │ └── angular-locale_zh.js
│ ├── angular-jqcloud
│ │ └── angular-jqcloud.js
│ ├── angularjs-toaster
│ │ ├── toaster.css
│ │ └── toaster.js
│ ├── angular-knob
│ │ └── src
│ │ └── angular-knob.js
│ ├── angular-rickshaw
│ │ └── rickshaw.js
│ ├── angular-summernote
│ │ └── dist
│ │ └── angular-summernote.js
│ ├── angular-sweetalert
│ │ └── SweetAlert.js
│ ├── angular-ui-calendar
│ │ └── src
│ │ └── calendar.js
│ ├── angular-ui-codemirror
│ │ └── ui-codemirror.js
│ ├── angular-ui-grid
│ │ ├── bower.json
│ │ ├── CHANGELOG.md
│ │ ├── fontello.eot
│ │ ├── fontello.svg
│ │ ├── fontello.ttf
│ │ ├── fontello.woff
│ │ ├── index.js
│ │ ├── package.json
│ │ ├── README.md
│ │ ├── ui-grid.css
│ │ ├── ui-grid.eot
│ │ ├── ui-grid.js
│ │ ├── ui-grid.min.css
│ │ ├── ui-grid.min.js
│ │ ├── ui-grid.svg
│ │ ├── ui-grid.ttf
│ │ └── ui-grid.woff
│ ├── angular-ui-map
│ │ └── ui-map.js
│ ├── angular-ui-select
│ │ └── dist
│ │ ├── select.css
│ │ └── select.js
│ ├── angular-ui-sortable
│ │ └── sortable.js
│ ├── angular-xeditable
│ │ └── dist
│ │ ├── css
│ │ │ └── xeditable.css
│ │ └── js
│ │ └── xeditable.js
│ ├── animate.css
│ │ └── animate.min.css
│ ├── animo.js
│ │ └── animo.js
│ ├── bootstrap
│ │ └── js
│ │ ├── affix.js
│ │ ├── alert.js
│ │ ├── button.js
│ │ ├── carousel.js
│ │ ├── collapse.js
│ │ ├── dropdown.js
│ │ ├── modal.js
│ │ ├── popover.js
│ │ ├── scrollspy.js
│ │ ├── tab.js
│ │ ├── tooltip.js
│ │ └── transition.js
│ ├── bootstrap-filestyle
│ │ └── src
│ │ └── bootstrap-filestyle.js
│ ├── bootstrap-tagsinput
│ │ └── dist
│ │ ├── bootstrap-tagsinput.css
│ │ └── bootstrap-tagsinput.min.js
│ ├── bootstrap-tour
│ │ └── build
│ │ ├── css
│ │ │ └── bootstrap-tour.css
│ │ └── js
│ │ └── bootstrap-tour-standalone.js
│ ├── bootstrap-wysiwyg
│ │ ├── bootstrap-wysiwyg.js
│ │ └── external
│ │ └── jquery.hotkeys.js
│ ├── chartist
│ │ └── dist
│ │ ├── chartist.js
│ │ └── chartist.min.css
│ ├── Chart.js
│ │ └── dist
│ │ └── Chart.js
│ ├── chosen_v1.2.0
│ │ ├── chosen.jquery.min.js
│ │ ├── chosen.min.css
│ │ ├── chosen-sprite@2x.png
│ │ └── chosen-sprite.png
│ ├── codemirror
│ │ ├── addon
│ │ │ └── mode
│ │ │ └── overlay.js
│ │ ├── lib
│ │ │ ├── codemirror.css
│ │ │ └── codemirror.js
│ │ ├── mode
│ │ │ ├── apl
│ │ │ │ └── apl.js
│ │ │ ├── asciiarmor
│ │ │ │ └── asciiarmor.js
│ │ │ ├── asn.1
│ │ │ │ └── asn.1.js
│ │ │ ├── asterisk
│ │ │ │ └── asterisk.js
│ │ │ ├── brainfuck
│ │ │ │ └── brainfuck.js
│ │ │ ├── clike
│ │ │ │ └── clike.js
│ │ │ ├── clojure
│ │ │ │ └── clojure.js
│ │ │ ├── cmake
│ │ │ │ └── cmake.js
│ │ │ ├── cobol
│ │ │ │ └── cobol.js
│ │ │ ├── coffeescript
│ │ │ │ └── coffeescript.js
│ │ │ ├── commonlisp
│ │ │ │ └── commonlisp.js
│ │ │ ├── crystal
│ │ │ │ └── crystal.js
│ │ │ ├── css
│ │ │ │ └── css.js
│ │ │ ├── cypher
│ │ │ │ └── cypher.js
│ │ │ ├── d
│ │ │ │ └── d.js
│ │ │ ├── dart
│ │ │ │ └── dart.js
│ │ │ ├── diff
│ │ │ │ └── diff.js
│ │ │ ├── django
│ │ │ │ └── django.js
│ │ │ ├── dockerfile
│ │ │ │ └── dockerfile.js
│ │ │ ├── dtd
│ │ │ │ └── dtd.js
│ │ │ ├── dylan
│ │ │ │ └── dylan.js
│ │ │ ├── ebnf
│ │ │ │ └── ebnf.js
│ │ │ ├── ecl
│ │ │ │ └── ecl.js
│ │ │ ├── eiffel
│ │ │ │ └── eiffel.js
│ │ │ ├── elm
│ │ │ │ └── elm.js
│ │ │ ├── erlang
│ │ │ │ └── erlang.js
│ │ │ ├── factor
│ │ │ │ └── factor.js
│ │ │ ├── fcl
│ │ │ │ └── fcl.js
│ │ │ ├── forth
│ │ │ │ └── forth.js
│ │ │ ├── fortran
│ │ │ │ └── fortran.js
│ │ │ ├── gas
│ │ │ │ └── gas.js
│ │ │ ├── gfm
│ │ │ │ └── gfm.js
│ │ │ ├── gherkin
│ │ │ │ └── gherkin.js
│ │ │ ├── go
│ │ │ │ └── go.js
│ │ │ ├── groovy
│ │ │ │ └── groovy.js
│ │ │ ├── haml
│ │ │ │ └── haml.js
│ │ │ ├── handlebars
│ │ │ │ └── handlebars.js
│ │ │ ├── haskell
│ │ │ │ └── haskell.js
│ │ │ ├── haskell-literate
│ │ │ │ └── haskell-literate.js
│ │ │ ├── haxe
│ │ │ │ └── haxe.js
│ │ │ ├── htmlembedded
│ │ │ │ └── htmlembedded.js
│ │ │ ├── htmlmixed
│ │ │ │ └── htmlmixed.js
│ │ │ ├── http
│ │ │ │ └── http.js
│ │ │ ├── idl
│ │ │ │ └── idl.js
│ │ │ ├── javascript
│ │ │ │ └── javascript.js
│ │ │ ├── jinja2
│ │ │ │ └── jinja2.js
│ │ │ ├── jsx
│ │ │ │ └── jsx.js
│ │ │ ├── julia
│ │ │ │ └── julia.js
│ │ │ ├── livescript
│ │ │ │ └── livescript.js
│ │ │ ├── lua
│ │ │ │ └── lua.js
│ │ │ ├── markdown
│ │ │ │ └── markdown.js
│ │ │ ├── mathematica
│ │ │ │ └── mathematica.js
│ │ │ ├── mbox
│ │ │ │ └── mbox.js
│ │ │ ├── meta.js
│ │ │ ├── mirc
│ │ │ │ └── mirc.js
│ │ │ ├── mllike
│ │ │ │ └── mllike.js
│ │ │ ├── modelica
│ │ │ │ └── modelica.js
│ │ │ ├── mscgen
│ │ │ │ └── mscgen.js
│ │ │ ├── mumps
│ │ │ │ └── mumps.js
│ │ │ ├── nginx
│ │ │ │ └── nginx.js
│ │ │ ├── nsis
│ │ │ │ └── nsis.js
│ │ │ ├── ntriples
│ │ │ │ └── ntriples.js
│ │ │ ├── octave
│ │ │ │ └── octave.js
│ │ │ ├── oz
│ │ │ │ └── oz.js
│ │ │ ├── pascal
│ │ │ │ └── pascal.js
│ │ │ ├── pegjs
│ │ │ │ └── pegjs.js
│ │ │ ├── perl
│ │ │ │ └── perl.js
│ │ │ ├── php
│ │ │ │ └── php.js
│ │ │ ├── pig
│ │ │ │ └── pig.js
│ │ │ ├── powershell
│ │ │ │ └── powershell.js
│ │ │ ├── properties
│ │ │ │ └── properties.js
│ │ │ ├── protobuf
│ │ │ │ └── protobuf.js
│ │ │ ├── pug
│ │ │ │ └── pug.js
│ │ │ ├── puppet
│ │ │ │ └── puppet.js
│ │ │ ├── python
│ │ │ │ └── python.js
│ │ │ ├── q
│ │ │ │ └── q.js
│ │ │ ├── r
│ │ │ │ └── r.js
│ │ │ ├── rpm
│ │ │ │ └── rpm.js
│ │ │ ├── rst
│ │ │ │ └── rst.js
│ │ │ ├── ruby
│ │ │ │ └── ruby.js
│ │ │ ├── rust
│ │ │ │ └── rust.js
│ │ │ ├── sas
│ │ │ │ └── sas.js
│ │ │ ├── sass
│ │ │ │ └── sass.js
│ │ │ ├── scheme
│ │ │ │ └── scheme.js
│ │ │ ├── shell
│ │ │ │ └── shell.js
│ │ │ ├── sieve
│ │ │ │ └── sieve.js
│ │ │ ├── slim
│ │ │ │ └── slim.js
│ │ │ ├── smalltalk
│ │ │ │ └── smalltalk.js
│ │ │ ├── smarty
│ │ │ │ └── smarty.js
│ │ │ ├── solr
│ │ │ │ └── solr.js
│ │ │ ├── soy
│ │ │ │ └── soy.js
│ │ │ ├── sparql
│ │ │ │ └── sparql.js
│ │ │ ├── spreadsheet
│ │ │ │ └── spreadsheet.js
│ │ │ ├── sql
│ │ │ │ └── sql.js
│ │ │ ├── stex
│ │ │ │ └── stex.js
│ │ │ ├── stylus
│ │ │ │ └── stylus.js
│ │ │ ├── swift
│ │ │ │ └── swift.js
│ │ │ ├── tcl
│ │ │ │ └── tcl.js
│ │ │ ├── textile
│ │ │ │ └── textile.js
│ │ │ ├── tiddlywiki
│ │ │ │ ├── tiddlywiki.css
│ │ │ │ └── tiddlywiki.js
│ │ │ ├── tiki
│ │ │ │ ├── tiki.css
│ │ │ │ └── tiki.js
│ │ │ ├── toml
│ │ │ │ └── toml.js
│ │ │ ├── tornado
│ │ │ │ └── tornado.js
│ │ │ ├── troff
│ │ │ │ └── troff.js
│ │ │ ├── ttcn
│ │ │ │ └── ttcn.js
│ │ │ ├── ttcn-cfg
│ │ │ │ └── ttcn-cfg.js
│ │ │ ├── turtle
│ │ │ │ └── turtle.js
│ │ │ ├── twig
│ │ │ │ └── twig.js
│ │ │ ├── vb
│ │ │ │ └── vb.js
│ │ │ ├── vbscript
│ │ │ │ └── vbscript.js
│ │ │ ├── velocity
│ │ │ │ └── velocity.js
│ │ │ ├── verilog
│ │ │ │ └── verilog.js
│ │ │ ├── vhdl
│ │ │ │ └── vhdl.js
│ │ │ ├── vue
│ │ │ │ └── vue.js
│ │ │ ├── webidl
│ │ │ │ └── webidl.js
│ │ │ ├── xml
│ │ │ │ └── xml.js
│ │ │ ├── xquery
│ │ │ │ └── xquery.js
│ │ │ ├── yacas
│ │ │ │ └── yacas.js
│ │ │ ├── yaml
│ │ │ │ └── yaml.js
│ │ │ ├── yaml-frontmatter
│ │ │ │ └── yaml-frontmatter.js
│ │ │ └── z80
│ │ │ └── z80.js
│ │ └── theme
│ │ ├── 3024-day.css
│ │ ├── 3024-night.css
│ │ ├── abcdef.css
│ │ ├── ambiance.css
│ │ ├── ambiance-mobile.css
│ │ ├── base16-dark.css
│ │ ├── base16-light.css
│ │ ├── bespin.css
│ │ ├── blackboard.css
│ │ ├── cobalt.css
│ │ ├── colorforth.css
│ │ ├── dracula.css
│ │ ├── duotone-dark.css
│ │ ├── duotone-light.css
│ │ ├── eclipse.css
│ │ ├── elegant.css
│ │ ├── erlang-dark.css
│ │ ├── hopscotch.css
│ │ ├── icecoder.css
│ │ ├── isotope.css
│ │ ├── lesser-dark.css
│ │ ├── liquibyte.css
│ │ ├── material.css
│ │ ├── mbo.css
│ │ ├── mdn-like.css
│ │ ├── midnight.css
│ │ ├── monokai.css
│ │ ├── neat.css
│ │ ├── neo.css
│ │ ├── night.css
│ │ ├── panda-syntax.css
│ │ ├── paraiso-dark.css
│ │ ├── paraiso-light.css
│ │ ├── pastel-on-dark.css
│ │ ├── railscasts.css
│ │ ├── rubyblue.css
│ │ ├── seti.css
│ │ ├── solarized.css
│ │ ├── the-matrix.css
│ │ ├── tomorrow-night-bright.css
│ │ ├── tomorrow-night-eighties.css
│ │ ├── ttcn.css
│ │ ├── twilight.css
│ │ ├── vibrant-ink.css
│ │ ├── xq-dark.css
│ │ ├── xq-light.css
│ │ ├── yeti.css
│ │ └── zenburn.css
│ ├── d3
│ │ └── d3.min.js
│ ├── datatables
│ │ └── media
│ │ ├── css
│ │ │ └── jquery.dataTables.css
│ │ ├── images
│ │ │ ├── favicon.ico
│ │ │ ├── sort_asc_disabled.png
│ │ │ ├── sort_asc.png
│ │ │ ├── sort_both.png
│ │ │ ├── sort_desc_disabled.png
│ │ │ ├── sort_desc.png
│ │ │ └── Sorting icons.psd
│ │ └── js
│ │ └── jquery.dataTables.js
│ ├── datatables-buttons
│ │ ├── css
│ │ │ ├── buttons.bootstrap4.scss
│ │ │ ├── buttons.bootstrap.scss
│ │ │ ├── buttons.dataTables.scss
│ │ │ ├── buttons.foundation.scss
│ │ │ ├── buttons.jqueryui.scss
│ │ │ ├── buttons.semanticui.scss
│ │ │ ├── common.scss
│ │ │ └── mixins.scss
│ │ └── js
│ │ ├── buttons.bootstrap4.js
│ │ ├── buttons.bootstrap.js
│ │ ├── buttons.colVis.js
│ │ ├── buttons.flash.js
│ │ ├── buttons.foundation.js
│ │ ├── buttons.html5.js
│ │ ├── buttons.jqueryui.js
│ │ ├── buttons.print.js
│ │ ├── buttons.semanticui.js
│ │ └── dataTables.buttons.js
│ ├── fastclick
│ │ └── lib
│ │ └── fastclick.js
│ ├── flatdoc
│ │ └── flatdoc.js
│ ├── Flot
│ │ ├── jquery.flot.categories.js
│ │ ├── jquery.flot.js
│ │ ├── jquery.flot.pie.js
│ │ ├── jquery.flot.resize.js
│ │ └── jquery.flot.time.js
│ ├── flot-spline
│ │ └── js
│ │ └── jquery.flot.spline.min.js
│ ├── flot.tooltip
│ │ └── js
│ │ └── jquery.flot.tooltip.min.js
│ ├── fontawesome
│ │ ├── css
│ │ │ └── font-awesome.min.css
│ │ └── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ ├── fullcalendar
│ │ └── dist
│ │ ├── fullcalendar.css
│ │ ├── fullcalendar.min.js
│ │ └── gcal.js
│ ├── ika.jvectormap
│ │ ├── jquery-jvectormap-1.2.2.css
│ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ ├── jquery-jvectormap-us-mill-en.js
│ │ └── jquery-jvectormap-world-mill-en.js
│ ├── jqcloud2
│ │ └── dist
│ │ ├── jqcloud.css
│ │ └── jqcloud.js
│ ├── jquery.easy-pie-chart
│ │ └── dist
│ │ └── angular.easypiechart.min.js
│ ├── jquery.inputmask
│ │ └── dist
│ │ └── jquery.inputmask.bundle.js
│ ├── jquery-knob
│ │ └── dist
│ │ └── jquery.knob.min.js
│ ├── jquery-ui
│ │ ├── jquery-ui.min.js
│ │ └── ui
│ │ ├── core.js
│ │ ├── data.js
│ │ ├── disable-selection.js
│ │ ├── effect.js
│ │ ├── escape-selector.js
│ │ ├── focusable.js
│ │ ├── form.js
│ │ ├── form-reset-mixin.js
│ │ ├── ie.js
│ │ ├── jquery-1-7.js
│ │ ├── keycode.js
│ │ ├── labels.js
│ │ ├── plugin.js
│ │ ├── position.js
│ │ ├── safe-active-element.js
│ │ ├── safe-blur.js
│ │ ├── scroll-parent.js
│ │ ├── tabbable.js
│ │ ├── unique-id.js
│ │ ├── version.js
│ │ └── widget.js
│ ├── jqueryui-touch-punch
│ │ └── jquery.ui.touch-punch.min.js
│ ├── loaders.css
│ │ └── loaders.css
│ ├── load-google-maps
│ │ └── load-google-maps.js
│ ├── marked
│ │ └── lib
│ │ └── marked.js
│ ├── modernizr
│ │ └── modernizr.custom.js
│ ├── moment
│ │ └── min
│ │ └── moment-with-locales.min.js
│ ├── morris.js
│ │ ├── morris.css
│ │ └── morris.js
│ ├── nestable
│ │ └── jquery.nestable.js
│ ├── ngDialog
│ │ ├── css
│ │ │ ├── ngDialog.min.css
│ │ │ └── ngDialog-theme-default.min.css
│ │ └── js
│ │ └── ngDialog.min.js
│ ├── ng-img-crop
│ │ └── compile
│ │ └── unminified
│ │ ├── ng-img-crop.css
│ │ └── ng-img-crop.js
│ ├── ngInfiniteScroll
│ │ └── build
│ │ └── ng-infinite-scroll.js
│ ├── ng-nestable
│ │ └── src
│ │ └── angular-nestable.js
│ ├── ng-table
│ │ └── dist
│ │ ├── ng-table.min.css
│ │ └── ng-table.min.js
│ ├── ng-table-export
│ │ └── ng-table-export.js
│ ├── ngWig
│ │ └── dist
│ │ └── ng-wig.min.js
│ ├── raphael
│ │ └── raphael.js
│ ├── rickshaw
│ │ ├── rickshaw.js
│ │ └── rickshaw.min.css
│ ├── screenfull
│ │ └── dist
│ │ └── screenfull.js
│ ├── seiyria-bootstrap-slider
│ │ └── dist
│ │ ├── bootstrap-slider.min.js
│ │ └── css
│ │ └── bootstrap-slider.min.css
│ ├── simple-line-icons
│ │ ├── css
│ │ │ └── simple-line-icons.css
│ │ └── fonts
│ │ ├── Simple-Line-Icons.eot
│ │ ├── Simple-Line-Icons.svg
│ │ ├── Simple-Line-Icons.ttf
│ │ ├── Simple-Line-Icons.woff
│ │ └── Simple-Line-Icons.woff2
│ ├── skycons
│ │ └── skycons.js
│ ├── slimScroll
│ │ └── jquery.slimscroll.min.js
│ ├── sparkline
│ │ └── index.js
│ ├── spinkit
│ │ └── css
│ │ └── spinkit.css
│ ├── summernote
│ │ └── dist
│ │ ├── font
│ │ │ ├── summernote.eot
│ │ │ ├── summernote.ttf
│ │ │ └── summernote.woff
│ │ ├── lang
│ │ │ ├── summernote-ar-AR.js
│ │ │ ├── summernote-ar-AR.min.js
│ │ │ ├── summernote-bg-BG.js
│ │ │ ├── summernote-bg-BG.min.js
│ │ │ ├── summernote-ca-ES.js
│ │ │ ├── summernote-ca-ES.min.js
│ │ │ ├── summernote-cs-CZ.js
│ │ │ ├── summernote-cs-CZ.min.js
│ │ │ ├── summernote-da-DK.js
│ │ │ ├── summernote-da-DK.min.js
│ │ │ ├── summernote-de-DE.js
│ │ │ ├── summernote-de-DE.min.js
│ │ │ ├── summernote-el-GR.js
│ │ │ ├── summernote-el-GR.min.js
│ │ │ ├── summernote-es-ES.js
│ │ │ ├── summernote-es-ES.min.js
│ │ │ ├── summernote-es-EU.js
│ │ │ ├── summernote-es-EU.min.js
│ │ │ ├── summernote-fa-IR.js
│ │ │ ├── summernote-fa-IR.min.js
│ │ │ ├── summernote-fi-FI.js
│ │ │ ├── summernote-fi-FI.min.js
│ │ │ ├── summernote-fr-FR.js
│ │ │ ├── summernote-fr-FR.min.js
│ │ │ ├── summernote-gl-ES.js
│ │ │ ├── summernote-gl-ES.min.js
│ │ │ ├── summernote-he-IL.js
│ │ │ ├── summernote-he-IL.min.js
│ │ │ ├── summernote-hr-HR.js
│ │ │ ├── summernote-hr-HR.min.js
│ │ │ ├── summernote-hu-HU.js
│ │ │ ├── summernote-hu-HU.min.js
│ │ │ ├── summernote-id-ID.js
│ │ │ ├── summernote-id-ID.min.js
│ │ │ ├── summernote-it-IT.js
│ │ │ ├── summernote-it-IT.min.js
│ │ │ ├── summernote-ja-JP.js
│ │ │ ├── summernote-ja-JP.min.js
│ │ │ ├── summernote-ko-KR.js
│ │ │ ├── summernote-ko-KR.min.js
│ │ │ ├── summernote-lt-LT.js
│ │ │ ├── summernote-lt-LT.min.js
│ │ │ ├── summernote-lt-LV.js
│ │ │ ├── summernote-lt-LV.min.js
│ │ │ ├── summernote-mn-MN.js
│ │ │ ├── summernote-mn-MN.min.js
│ │ │ ├── summernote-nb-NO.js
│ │ │ ├── summernote-nb-NO.min.js
│ │ │ ├── summernote-nl-NL.js
│ │ │ ├── summernote-nl-NL.min.js
│ │ │ ├── summernote-pl-PL.js
│ │ │ ├── summernote-pl-PL.min.js
│ │ │ ├── summernote-pt-BR.js
│ │ │ ├── summernote-pt-BR.min.js
│ │ │ ├── summernote-pt-PT.js
│ │ │ ├── summernote-pt-PT.min.js
│ │ │ ├── summernote-ro-RO.js
│ │ │ ├── summernote-ro-RO.min.js
│ │ │ ├── summernote-ru-RU.js
│ │ │ ├── summernote-ru-RU.min.js
│ │ │ ├── summernote-sk-SK.js
│ │ │ ├── summernote-sk-SK.min.js
│ │ │ ├── summernote-sl-SI.js
│ │ │ ├── summernote-sl-SI.min.js
│ │ │ ├── summernote-sr-RS.js
│ │ │ ├── summernote-sr-RS-Latin.js
│ │ │ ├── summernote-sr-RS-Latin.min.js
│ │ │ ├── summernote-sr-RS.min.js
│ │ │ ├── summernote-sv-SE.js
│ │ │ ├── summernote-sv-SE.min.js
│ │ │ ├── summernote-ta-IN.js
│ │ │ ├── summernote-ta-IN.min.js
│ │ │ ├── summernote-th-TH.js
│ │ │ ├── summernote-th-TH.min.js
│ │ │ ├── summernote-tr-TR.js
│ │ │ ├── summernote-tr-TR.min.js
│ │ │ ├── summernote-uk-UA.js
│ │ │ ├── summernote-uk-UA.min.js
│ │ │ ├── summernote-vi-VN.js
│ │ │ ├── summernote-vi-VN.min.js
│ │ │ ├── summernote-zh-CN.js
│ │ │ ├── summernote-zh-CN.min.js
│ │ │ ├── summernote-zh-TW.js
│ │ │ └── summernote-zh-TW.min.js
│ │ ├── summernote-bs4.css
│ │ ├── summernote-bs4.js
│ │ ├── summernote-bs4.min.js
│ │ ├── summernote.css
│ │ ├── summernote.js
│ │ ├── summernote-lite.css
│ │ ├── summernote-lite.js
│ │ └── summernote.min.js
│ ├── sweetalert
│ │ └── dist
│ │ ├── sweetalert.css
│ │ └── sweetalert.min.js
│ ├── weather-icons
│ │ ├── css
│ │ │ ├── weather-icons.min.css
│ │ │ └── weather-icons-wind.min.css
│ │ └── font
│ │ ├── weathericons-regular-webfont.eot
│ │ ├── weathericons-regular-webfont.svg
│ │ ├── weathericons-regular-webfont.ttf
│ │ ├── weathericons-regular-webfont.woff
│ │ └── weathericons-regular-webfont.woff2
│ └── whirl
│ └── dist
│ └── whirl.css
├── backend-angular-seed
│ ├── app
│ │ ├── css
│ │ │ ├── app.css
│ │ │ ├── app-rtl.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap-rtl.css
│ │ │ ├── theme-a.css
│ │ │ ├── theme-b.css
│ │ │ ├── theme-c.css
│ │ │ ├── theme-d.css
│ │ │ ├── theme-e.css
│ │ │ ├── theme-f.css
│ │ │ ├── theme-g.css
│ │ │ └── theme-h.css
│ │ ├── i18n
│ │ │ ├── en.json
│ │ │ └── es_AR.json
│ │ ├── img
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ └── preloader
│ │ │ ├── preloader.empty.png
│ │ │ └── preloader.full.png
│ │ ├── js
│ │ │ ├── app.js
│ │ │ └── base.js
│ │ └── views
│ │ ├── app.html
│ │ ├── partials
│ │ │ ├── footer.html
│ │ │ ├── offsidebar.html
│ │ │ ├── offsidebar-tab1.html
│ │ │ ├── offsidebar-tab2.html
│ │ │ ├── sidebar.html
│ │ │ └── top-navbar.html
│ │ ├── singleview.html
│ │ └── submenu.html
│ ├── index.html
│ ├── master
│ │ ├── bower.json
│ │ ├── gulpfile.js
│ │ ├── js
│ │ │ ├── app.module.js
│ │ │ ├── custom
│ │ │ │ ├── custom.controller.js
│ │ │ │ ├── custom.module.js
│ │ │ │ └── README.txt
│ │ │ └── modules
│ │ │ ├── colors
│ │ │ │ ├── colors.contant.js
│ │ │ │ ├── colors.module.js
│ │ │ │ └── colors.service.js
│ │ │ ├── core
│ │ │ │ ├── core.config.js
│ │ │ │ ├── core.constants.js
│ │ │ │ ├── core.module.js
│ │ │ │ └── core.run.js
│ │ │ ├── lazyload
│ │ │ │ ├── lazyload.config.js
│ │ │ │ ├── lazyload.constants.js
│ │ │ │ └── lazyload.module.js
│ │ │ ├── loadingbar
│ │ │ │ ├── loadingbar.config.js
│ │ │ │ ├── loadingbar.module.js
│ │ │ │ └── loadingbar.run.js
│ │ │ ├── navsearch
│ │ │ │ ├── navsearch.directive.js
│ │ │ │ ├── navsearch.module.js
│ │ │ │ └── navsearch.service.js
│ │ │ ├── preloader
│ │ │ │ ├── preloader.directive.js
│ │ │ │ └── preloader.module.js
│ │ │ ├── routes
│ │ │ │ ├── route-helpers.provider.js
│ │ │ │ ├── routes.config.js
│ │ │ │ └── routes.module.js
│ │ │ ├── settings
│ │ │ │ ├── settings.module.js
│ │ │ │ └── settings.run.js
│ │ │ ├── sidebar
│ │ │ │ ├── sidebar.controller.js
│ │ │ │ ├── sidebar.directive.js
│ │ │ │ ├── sidebar.module.js
│ │ │ │ ├── sidebar.service.js
│ │ │ │ └── sidebar.userblock.controller.js
│ │ │ ├── translate
│ │ │ │ ├── translate.config.js
│ │ │ │ ├── translate.module.js
│ │ │ │ └── translate.run.js
│ │ │ └── utils
│ │ │ ├── animate-enabled.directive.js
│ │ │ ├── browser.service.js
│ │ │ ├── clear-storage.directive.js
│ │ │ ├── fullscreen.directive.js
│ │ │ ├── load-css.directive.js
│ │ │ ├── now.directive.js
│ │ │ ├── table-checkall.directive.js
│ │ │ ├── trigger-resize.directive.js
│ │ │ ├── utils.module.js
│ │ │ └── utils.service.js
│ │ ├── less
│ │ │ ├── app
│ │ │ │ ├── animate.less
│ │ │ │ ├── bootstrap-reset.less
│ │ │ │ ├── breadcrumbs.less
│ │ │ │ ├── layout-animation.less
│ │ │ │ ├── layout-extra.less
│ │ │ │ ├── layout.less
│ │ │ │ ├── loading-bar.less
│ │ │ │ ├── media-queries.less
│ │ │ │ ├── offsidebar.less
│ │ │ │ ├── preloader.less
│ │ │ │ ├── print.less
│ │ │ │ ├── sidebar.less
│ │ │ │ ├── top-navbar.less
│ │ │ │ ├── typo.less
│ │ │ │ └── utils.less
│ │ │ ├── app.less
│ │ │ ├── bootstrap
│ │ │ │ ├── alerts.less
│ │ │ │ ├── badges.less
│ │ │ │ ├── bootstrap.less
│ │ │ │ ├── breadcrumbs.less
│ │ │ │ ├── button-groups.less
│ │ │ │ ├── buttons.less
│ │ │ │ ├── carousel.less
│ │ │ │ ├── close.less
│ │ │ │ ├── code.less
│ │ │ │ ├── component-animations.less
│ │ │ │ ├── dropdowns.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── glyphicons.less
│ │ │ │ ├── grid.less
│ │ │ │ ├── input-groups.less
│ │ │ │ ├── jumbotron.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── media.less
│ │ │ │ ├── mixins
│ │ │ │ │ ├── alerts.less
│ │ │ │ │ ├── background-variant.less
│ │ │ │ │ ├── border-radius.less
│ │ │ │ │ ├── buttons.less
│ │ │ │ │ ├── center-block.less
│ │ │ │ │ ├── clearfix.less
│ │ │ │ │ ├── forms.less
│ │ │ │ │ ├── gradients.less
│ │ │ │ │ ├── grid-framework.less
│ │ │ │ │ ├── grid.less
│ │ │ │ │ ├── hide-text.less
│ │ │ │ │ ├── image.less
│ │ │ │ │ ├── labels.less
│ │ │ │ │ ├── list-group.less
│ │ │ │ │ ├── nav-divider.less
│ │ │ │ │ ├── nav-vertical-align.less
│ │ │ │ │ ├── opacity.less
│ │ │ │ │ ├── pagination.less
│ │ │ │ │ ├── panels.less
│ │ │ │ │ ├── progress-bar.less
│ │ │ │ │ ├── reset-filter.less
│ │ │ │ │ ├── reset-text.less
│ │ │ │ │ ├── resize.less
│ │ │ │ │ ├── responsive-visibility.less
│ │ │ │ │ ├── size.less
│ │ │ │ │ ├── tab-focus.less
│ │ │ │ │ ├── table-row.less
│ │ │ │ │ ├── text-emphasis.less
│ │ │ │ │ ├── text-overflow.less
│ │ │ │ │ └── vendor-prefixes.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── modals.less
│ │ │ │ ├── navbar.less
│ │ │ │ ├── navs.less
│ │ │ │ ├── normalize.less
│ │ │ │ ├── pager.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── popovers.less
│ │ │ │ ├── print.less
│ │ │ │ ├── progress-bars.less
│ │ │ │ ├── responsive-embed.less
│ │ │ │ ├── responsive-utilities.less
│ │ │ │ ├── scaffolding.less
│ │ │ │ ├── tables.less
│ │ │ │ ├── theme.less
│ │ │ │ ├── thumbnails.less
│ │ │ │ ├── tooltip.less
│ │ │ │ ├── type.less
│ │ │ │ ├── utilities.less
│ │ │ │ ├── variables.less
│ │ │ │ └── wells.less
│ │ │ ├── bootstrap.less
│ │ │ └── themes
│ │ │ ├── theme-a.less
│ │ │ ├── theme-b.less
│ │ │ ├── theme-c.less
│ │ │ ├── theme-d.less
│ │ │ ├── theme-e.less
│ │ │ ├── theme-f.less
│ │ │ ├── theme-g.less
│ │ │ └── theme-h.less
│ │ ├── package.json
│ │ ├── package-lock.json
│ │ ├── pug
│ │ │ ├── index.pug
│ │ │ └── views
│ │ │ ├── app.pug
│ │ │ ├── partials
│ │ │ │ ├── footer.pug
│ │ │ │ ├── offsidebar.pug
│ │ │ │ ├── offsidebar-tab1.pug
│ │ │ │ ├── offsidebar-tab2.pug
│ │ │ │ ├── sidebar.pug
│ │ │ │ └── top-navbar.pug
│ │ │ ├── singleview.pug
│ │ │ └── submenu.pug
│ │ ├── sass
│ │ │ ├── app
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── breadcrumbs.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── loading-bar.scss
│ │ │ │ ├── media-queries.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── preloader.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── utils-definitions.scss
│ │ │ │ ├── utils.scss
│ │ │ │ └── variables.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _badges.scss
│ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ ├── _close.scss
│ │ │ │ │ ├── _code.scss
│ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _media.scss
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modals.scss
│ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ ├── _navs.scss
│ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ ├── _pager.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ ├── _print.scss
│ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _tables.scss
│ │ │ │ │ ├── _theme.scss
│ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ ├── _variables.scss
│ │ │ │ │ └── _wells.scss
│ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ ├── _bootstrap.scss
│ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ ├── tests
│ │ │ ├── e2e
│ │ │ │ └── module.e2e.js
│ │ │ ├── karma.conf.js
│ │ │ ├── protractor.conf.js
│ │ │ └── unit
│ │ │ └── module.spec.js
│ │ ├── vendor.base.json
│ │ └── vendor.json
│ ├── server
│ │ └── sidebar-menu.json
│ └── vendor
│ ├── fontawesome
│ │ ├── css
│ │ │ └── font-awesome.min.css
│ │ └── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ ├── modernizr
│ │ └── modernizr.custom.js
│ └── simple-line-icons
│ ├── css
│ │ └── simple-line-icons.css
│ └── fonts
│ ├── Simple-Line-Icons.eot
│ ├── Simple-Line-Icons.svg
│ ├── Simple-Line-Icons.ttf
│ ├── Simple-Line-Icons.woff
│ └── Simple-Line-Icons.woff2
├── backend-jquery
│ ├── app
│ │ ├── 404.html
│ │ ├── 500.html
│ │ ├── animations.html
│ │ ├── blog-articles.html
│ │ ├── blog-article-view.html
│ │ ├── blog.html
│ │ ├── blog-post.html
│ │ ├── bug-tracker.html
│ │ ├── buttons.html
│ │ ├── calendar.html
│ │ ├── carousel.html
│ │ ├── chart-chartist.html
│ │ ├── chart-flot.html
│ │ ├── chart-js.html
│ │ ├── chart-morris.html
│ │ ├── chart-radial.html
│ │ ├── chart-rickshaw.html
│ │ ├── colors.html
│ │ ├── contact-details.html
│ │ ├── contacts.html
│ │ ├── css
│ │ │ ├── app.css
│ │ │ ├── app-rtl.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap-rtl.css
│ │ │ ├── theme-a.css
│ │ │ ├── theme-b.css
│ │ │ ├── theme-c.css
│ │ │ ├── theme-d.css
│ │ │ ├── theme-e.css
│ │ │ ├── theme-f.css
│ │ │ ├── theme-g.css
│ │ │ └── theme-h.css
│ │ ├── dashboard_h.html
│ │ ├── dashboard.html
│ │ ├── dashboard_v2.html
│ │ ├── dashboard_v3.html
│ │ ├── documentation
│ │ │ └── readme.md
│ │ ├── documentation.html
│ │ ├── dropdown-animations.html
│ │ ├── ecommerce-checkout.html
│ │ ├── ecommerce-orders.html
│ │ ├── ecommerce-order-view.html
│ │ ├── ecommerce-products.html
│ │ ├── ecommerce-product-view.html
│ │ ├── faq.html
│ │ ├── file-manager.html
│ │ ├── followers.html
│ │ ├── form-extended.html
│ │ ├── form-imagecrop.html
│ │ ├── form-standard.html
│ │ ├── form-upload.html
│ │ ├── form-validation.html
│ │ ├── form-wizard.html
│ │ ├── form-xeditable.html
│ │ ├── forum-categories.html
│ │ ├── forum-discussion.html
│ │ ├── forum-topics.html
│ │ ├── grid.html
│ │ ├── grid-masonry.html
│ │ ├── help-center.html
│ │ ├── i18n
│ │ │ ├── site-en.json
│ │ │ └── site-es.json
│ │ ├── icons-font.html
│ │ ├── icons-weather.html
│ │ ├── img
│ │ │ ├── bg10.jpg
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.jpg
│ │ │ ├── bg3.jpg
│ │ │ ├── bg4.jpg
│ │ │ ├── bg5.jpg
│ │ │ ├── bg6.jpg
│ │ │ ├── bg7.jpg
│ │ │ ├── bg8.jpg
│ │ │ ├── bg9.jpg
│ │ │ ├── dummy.png
│ │ │ ├── lock-bg.jpg
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ ├── mb-sample.jpg
│ │ │ ├── mockup.png
│ │ │ ├── profile-bg.jpg
│ │ │ └── user
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 04.jpg
│ │ │ ├── 05.jpg
│ │ │ ├── 06.jpg
│ │ │ ├── 07.jpg
│ │ │ ├── 08.jpg
│ │ │ ├── 09.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ └── 13.jpg
│ │ ├── invoice.html
│ │ ├── js
│ │ │ ├── app.js
│ │ │ └── demo
│ │ │ ├── demo-datatable.js
│ │ │ ├── demo-flot.js
│ │ │ ├── demo-forms.js
│ │ │ ├── demo-jqcloud.js
│ │ │ ├── demo-jqgrid.js
│ │ │ ├── demo-nestable.js
│ │ │ ├── demo-panels.js
│ │ │ ├── demo-rtl.js
│ │ │ ├── demo-search.js
│ │ │ ├── demo-sortable.js
│ │ │ ├── demo-upload.js
│ │ │ ├── demo-vector-map.js
│ │ │ ├── demo-wizard.js
│ │ │ └── demo-xeditable.js
│ │ ├── lock.html
│ │ ├── login.html
│ │ ├── mailbox.html
│ │ ├── maintenance.html
│ │ ├── maps-google.html
│ │ ├── maps-vector.html
│ │ ├── multilevel-1.html
│ │ ├── multilevel-3.html
│ │ ├── nestable.html
│ │ ├── notifications.html
│ │ ├── panels.html
│ │ ├── plans.html
│ │ ├── portlets.html
│ │ ├── profile.html
│ │ ├── project-details.html
│ │ ├── projects.html
│ │ ├── recover.html
│ │ ├── register.html
│ │ ├── search.html
│ │ ├── settings.html
│ │ ├── social-board.html
│ │ ├── sortable.html
│ │ ├── spinners.html
│ │ ├── sweetalert.html
│ │ ├── table-datatable.html
│ │ ├── table-extended.html
│ │ ├── table-jqgrid.html
│ │ ├── table-standard.html
│ │ ├── team-viewer.html
│ │ ├── template.html
│ │ ├── timeline.html
│ │ ├── todo.html
│ │ ├── tour.html
│ │ ├── typo.html
│ │ ├── vote-links.html
│ │ └── widgets.html
│ ├── index.html
│ ├── master
│ │ ├── bower.json
│ │ ├── gulpfile.js
│ │ ├── js
│ │ │ ├── app.init.js
│ │ │ ├── custom
│ │ │ │ └── custom.js
│ │ │ └── modules
│ │ │ ├── bootstrap-start.js
│ │ │ ├── calendar.js
│ │ │ ├── chart-easypie.js
│ │ │ ├── chartist.js
│ │ │ ├── chart.js
│ │ │ ├── chart-knob.js
│ │ │ ├── clear-storage.js
│ │ │ ├── color-picker.js
│ │ │ ├── constants.js
│ │ │ ├── demo
│ │ │ │ ├── demo-datatable.js
│ │ │ │ ├── demo-flot.js
│ │ │ │ ├── demo-forms.js
│ │ │ │ ├── demo-jqcloud.js
│ │ │ │ ├── demo-jqgrid.js
│ │ │ │ ├── demo-nestable.js
│ │ │ │ ├── demo-panels.js
│ │ │ │ ├── demo-rtl.js
│ │ │ │ ├── demo-search.js
│ │ │ │ ├── demo-sortable.js
│ │ │ │ ├── demo-upload.js
│ │ │ │ ├── demo-vector-map.js
│ │ │ │ ├── demo-wizard.js
│ │ │ │ └── demo-xeditable.js
│ │ │ ├── easypiechart.js
│ │ │ ├── flatdoc.js
│ │ │ ├── fullscreen.js
│ │ │ ├── gmap.js
│ │ │ ├── imagecrop.js
│ │ │ ├── load-css.js
│ │ │ ├── localize.js
│ │ │ ├── maps-vector.js
│ │ │ ├── morris.js
│ │ │ ├── navbar-search.js
│ │ │ ├── notify.js
│ │ │ ├── now.js
│ │ │ ├── panel-tools.js
│ │ │ ├── play-animation.js
│ │ │ ├── porlets.js
│ │ │ ├── rickshaw.js
│ │ │ ├── select2.js
│ │ │ ├── sidebar.js
│ │ │ ├── skycons.js
│ │ │ ├── slimscroll.js
│ │ │ ├── sparkline.js
│ │ │ ├── sweetalert.js
│ │ │ ├── table-checkall.js
│ │ │ ├── toggle-state.js
│ │ │ ├── tour.js
│ │ │ ├── trigger-resize.js
│ │ │ └── utils.js
│ │ ├── less
│ │ │ ├── app
│ │ │ │ ├── alerts.less
│ │ │ │ ├── animate.less
│ │ │ │ ├── bootstrap-reset.less
│ │ │ │ ├── breadcrumbs.less
│ │ │ │ ├── button-extra.less
│ │ │ │ ├── calendar.less
│ │ │ │ ├── chart-easypie.less
│ │ │ │ ├── chart-flot.less
│ │ │ │ ├── circles.less
│ │ │ │ ├── datatable.less
│ │ │ │ ├── docs.less
│ │ │ │ ├── dropdown-extra.less
│ │ │ │ ├── form-elements.less
│ │ │ │ ├── form-imgcrop.less
│ │ │ │ ├── form-tags.less
│ │ │ │ ├── form-validation.less
│ │ │ │ ├── form-wizard.less
│ │ │ │ ├── gmap.less
│ │ │ │ ├── half-float.less
│ │ │ │ ├── jqgrid.less
│ │ │ │ ├── layout-animation.less
│ │ │ │ ├── layout-extra.less
│ │ │ │ ├── layout.less
│ │ │ │ ├── mailbox.less
│ │ │ │ ├── masonry-grid.less
│ │ │ │ ├── media-queries.less
│ │ │ │ ├── nestable.less
│ │ │ │ ├── notify.less
│ │ │ │ ├── offsidebar.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── placeholder.less
│ │ │ │ ├── plans.less
│ │ │ │ ├── plugins.less
│ │ │ │ ├── portlets.less
│ │ │ │ ├── print.less
│ │ │ │ ├── progress-extra.less
│ │ │ │ ├── radial-bar.less
│ │ │ │ ├── row-extra.less
│ │ │ │ ├── settings.less
│ │ │ │ ├── sidebar.less
│ │ │ │ ├── slim-scroll.less
│ │ │ │ ├── spinner.less
│ │ │ │ ├── table-extras.less
│ │ │ │ ├── table-grid.less
│ │ │ │ ├── timeline.less
│ │ │ │ ├── todo.less
│ │ │ │ ├── top-navbar.less
│ │ │ │ ├── typo.less
│ │ │ │ ├── user-block.less
│ │ │ │ ├── utils.less
│ │ │ │ ├── vector-map.less
│ │ │ │ └── widget.less
│ │ │ ├── app.less
│ │ │ ├── bootstrap
│ │ │ │ ├── alerts.less
│ │ │ │ ├── badges.less
│ │ │ │ ├── bootstrap.less
│ │ │ │ ├── breadcrumbs.less
│ │ │ │ ├── button-groups.less
│ │ │ │ ├── buttons.less
│ │ │ │ ├── carousel.less
│ │ │ │ ├── close.less
│ │ │ │ ├── code.less
│ │ │ │ ├── component-animations.less
│ │ │ │ ├── dropdowns.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── glyphicons.less
│ │ │ │ ├── grid.less
│ │ │ │ ├── input-groups.less
│ │ │ │ ├── jumbotron.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── media.less
│ │ │ │ ├── mixins
│ │ │ │ │ ├── alerts.less
│ │ │ │ │ ├── background-variant.less
│ │ │ │ │ ├── border-radius.less
│ │ │ │ │ ├── buttons.less
│ │ │ │ │ ├── center-block.less
│ │ │ │ │ ├── clearfix.less
│ │ │ │ │ ├── forms.less
│ │ │ │ │ ├── gradients.less
│ │ │ │ │ ├── grid-framework.less
│ │ │ │ │ ├── grid.less
│ │ │ │ │ ├── hide-text.less
│ │ │ │ │ ├── image.less
│ │ │ │ │ ├── labels.less
│ │ │ │ │ ├── list-group.less
│ │ │ │ │ ├── nav-divider.less
│ │ │ │ │ ├── nav-vertical-align.less
│ │ │ │ │ ├── opacity.less
│ │ │ │ │ ├── pagination.less
│ │ │ │ │ ├── panels.less
│ │ │ │ │ ├── progress-bar.less
│ │ │ │ │ ├── reset-filter.less
│ │ │ │ │ ├── reset-text.less
│ │ │ │ │ ├── resize.less
│ │ │ │ │ ├── responsive-visibility.less
│ │ │ │ │ ├── size.less
│ │ │ │ │ ├── tab-focus.less
│ │ │ │ │ ├── table-row.less
│ │ │ │ │ ├── text-emphasis.less
│ │ │ │ │ ├── text-overflow.less
│ │ │ │ │ └── vendor-prefixes.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── modals.less
│ │ │ │ ├── navbar.less
│ │ │ │ ├── navs.less
│ │ │ │ ├── normalize.less
│ │ │ │ ├── pager.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── popovers.less
│ │ │ │ ├── print.less
│ │ │ │ ├── progress-bars.less
│ │ │ │ ├── responsive-embed.less
│ │ │ │ ├── responsive-utilities.less
│ │ │ │ ├── scaffolding.less
│ │ │ │ ├── tables.less
│ │ │ │ ├── theme.less
│ │ │ │ ├── thumbnails.less
│ │ │ │ ├── tooltip.less
│ │ │ │ ├── type.less
│ │ │ │ ├── utilities.less
│ │ │ │ ├── variables.less
│ │ │ │ └── wells.less
│ │ │ ├── bootstrap.less
│ │ │ └── themes
│ │ │ ├── theme-a.less
│ │ │ ├── theme-b.less
│ │ │ ├── theme-c.less
│ │ │ ├── theme-d.less
│ │ │ ├── theme-e.less
│ │ │ ├── theme-f.less
│ │ │ ├── theme-g.less
│ │ │ └── theme-h.less
│ │ ├── package.json
│ │ ├── package-lock.json
│ │ ├── pug
│ │ │ ├── _layout_h.pug
│ │ │ ├── _layout_page.pug
│ │ │ ├── _layout.pug
│ │ │ ├── pages
│ │ │ │ ├── 404.pug
│ │ │ │ ├── 500.pug
│ │ │ │ ├── _footer_page.pug
│ │ │ │ ├── lock.pug
│ │ │ │ ├── login.pug
│ │ │ │ ├── maintenance.pug
│ │ │ │ ├── recover.pug
│ │ │ │ └── register.pug
│ │ │ └── views
│ │ │ ├── animations.pug
│ │ │ ├── blog-articles.pug
│ │ │ ├── blog-article-view.pug
│ │ │ ├── blog-post.pug
│ │ │ ├── blog.pug
│ │ │ ├── bug-tracker.pug
│ │ │ ├── buttons.pug
│ │ │ ├── calendar.pug
│ │ │ ├── carousel.pug
│ │ │ ├── chart-chartist.pug
│ │ │ ├── chart-flot.pug
│ │ │ ├── chart-js.pug
│ │ │ ├── chart-morris.pug
│ │ │ ├── chart-radial.pug
│ │ │ ├── chart-rickshaw.pug
│ │ │ ├── colors.pug
│ │ │ ├── contact-details.pug
│ │ │ ├── contacts.pug
│ │ │ ├── dashboard_h.pug
│ │ │ ├── dashboard.pug
│ │ │ ├── dashboard_v2.pug
│ │ │ ├── dashboard_v3.pug
│ │ │ ├── documentation.pug
│ │ │ ├── dropdown-animations.pug
│ │ │ ├── ecommerce-checkout.pug
│ │ │ ├── ecommerce-orders.pug
│ │ │ ├── ecommerce-order-view.pug
│ │ │ ├── ecommerce-products.pug
│ │ │ ├── ecommerce-product-view.pug
│ │ │ ├── faq.pug
│ │ │ ├── file-manager.pug
│ │ │ ├── followers.pug
│ │ │ ├── form-extended.pug
│ │ │ ├── form-imagecrop.pug
│ │ │ ├── form-standard.pug
│ │ │ ├── form-upload.pug
│ │ │ ├── form-validation.pug
│ │ │ ├── form-wizard.pug
│ │ │ ├── form-xeditable.pug
│ │ │ ├── forum-categories.pug
│ │ │ ├── forum-discussion.pug
│ │ │ ├── forum-topics.pug
│ │ │ ├── grid-masonry.pug
│ │ │ ├── grid.pug
│ │ │ ├── help-center.pug
│ │ │ ├── icons-font.pug
│ │ │ ├── icons-weather.pug
│ │ │ ├── invoice.pug
│ │ │ ├── mailbox.pug
│ │ │ ├── maps-google.pug
│ │ │ ├── maps-vector.pug
│ │ │ ├── multilevel-1.pug
│ │ │ ├── multilevel-3.pug
│ │ │ ├── nestable.pug
│ │ │ ├── notifications.pug
│ │ │ ├── panels.pug
│ │ │ ├── partials
│ │ │ │ ├── _chat.pug
│ │ │ │ ├── _footer.pug
│ │ │ │ ├── _head.pug
│ │ │ │ ├── _offsidebar.pug
│ │ │ │ ├── _scripts.pug
│ │ │ │ ├── _settings.pug
│ │ │ │ ├── _sidebar.pug
│ │ │ │ ├── _top-navbar_h.pug
│ │ │ │ └── _top-navbar.pug
│ │ │ ├── plans.pug
│ │ │ ├── portlets.pug
│ │ │ ├── profile.pug
│ │ │ ├── project-details.pug
│ │ │ ├── projects.pug
│ │ │ ├── search.pug
│ │ │ ├── settings.pug
│ │ │ ├── social-board.pug
│ │ │ ├── sortable.pug
│ │ │ ├── spinners.pug
│ │ │ ├── sweetalert.pug
│ │ │ ├── table-datatable.pug
│ │ │ ├── table-extended.pug
│ │ │ ├── table-jqgrid.pug
│ │ │ ├── table-standard.pug
│ │ │ ├── team-viewer.pug
│ │ │ ├── template.pug
│ │ │ ├── timeline.pug
│ │ │ ├── todo.pug
│ │ │ ├── tour.pug
│ │ │ ├── typo.pug
│ │ │ ├── vote-links.pug
│ │ │ └── widgets.pug
│ │ ├── sass
│ │ │ ├── app
│ │ │ │ ├── alerts.scss
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── breadcrumbs.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── calendar.scss
│ │ │ │ ├── chart-easypie.scss
│ │ │ │ ├── chart-flot.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── datatable.scss
│ │ │ │ ├── docs.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── form-elements.scss
│ │ │ │ ├── form-imgcrop.scss
│ │ │ │ ├── form-tags.scss
│ │ │ │ ├── form-validation.scss
│ │ │ │ ├── form-wizard.scss
│ │ │ │ ├── gmap.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── jqgrid.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── mailbox.scss
│ │ │ │ ├── masonry-grid.scss
│ │ │ │ ├── media-queries.scss
│ │ │ │ ├── nestable.scss
│ │ │ │ ├── notify.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── panels.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── plans.scss
│ │ │ │ ├── plugins.scss
│ │ │ │ ├── portlets.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── progress-extra.scss
│ │ │ │ ├── radial-bar.scss
│ │ │ │ ├── row-extra.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── spinner.scss
│ │ │ │ ├── table-extras.scss
│ │ │ │ ├── table-grid.scss
│ │ │ │ ├── timeline.scss
│ │ │ │ ├── todo.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── user-block.scss
│ │ │ │ ├── utils-definitions.scss
│ │ │ │ ├── utils.scss
│ │ │ │ ├── variables.scss
│ │ │ │ ├── vector-map.scss
│ │ │ │ └── widget.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _badges.scss
│ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ ├── _close.scss
│ │ │ │ │ ├── _code.scss
│ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _media.scss
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modals.scss
│ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ ├── _navs.scss
│ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ ├── _pager.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ ├── _print.scss
│ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _tables.scss
│ │ │ │ │ ├── _theme.scss
│ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ ├── _variables.scss
│ │ │ │ │ └── _wells.scss
│ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ ├── _bootstrap.scss
│ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ ├── sidebar.json
│ │ └── vendor.json
│ ├── server
│ │ ├── datatable.json
│ │ ├── jqgrid.json
│ │ ├── jqgrid-tree.json
│ │ ├── xeditable-groups.json
│ │ └── xeditable.res
│ └── vendor
│ ├── animate.css
│ │ └── animate.min.css
│ ├── animo.js
│ │ └── animo.js
│ ├── blueimp-canvas-to-blob
│ │ └── js
│ │ └── canvas-to-blob.js
│ ├── blueimp-file-upload
│ │ ├── css
│ │ │ └── jquery.fileupload.css
│ │ ├── img
│ │ │ ├── loading.gif
│ │ │ └── progressbar.gif
│ │ └── js
│ │ ├── jquery.fileupload-angular.js
│ │ ├── jquery.fileupload-audio.js
│ │ ├── jquery.fileupload-image.js
│ │ ├── jquery.fileupload-jquery-ui.js
│ │ ├── jquery.fileupload.js
│ │ ├── jquery.fileupload-process.js
│ │ ├── jquery.fileupload-ui.js
│ │ ├── jquery.fileupload-validate.js
│ │ ├── jquery.fileupload-video.js
│ │ └── jquery.iframe-transport.js
│ ├── blueimp-load-image
│ │ └── js
│ │ └── load-image.all.min.js
│ ├── blueimp-tmpl
│ │ └── js
│ │ └── tmpl.js
│ ├── bootstrap
│ │ └── dist
│ │ ├── css
│ │ │ └── bootstrap.css
│ │ └── js
│ │ └── bootstrap.js
│ ├── bootstrap-filestyle
│ │ └── src
│ │ └── bootstrap-filestyle.js
│ ├── bootstrap-tagsinput
│ │ └── dist
│ │ ├── bootstrap-tagsinput.css
│ │ └── bootstrap-tagsinput.min.js
│ ├── bootstrap-tour
│ │ └── build
│ │ ├── css
│ │ │ └── bootstrap-tour-standalone.css
│ │ └── js
│ │ └── bootstrap-tour-standalone.js
│ ├── bootstrap-wysiwyg
│ │ ├── bootstrap-wysiwyg.js
│ │ └── external
│ │ └── jquery.hotkeys.js
│ ├── chartist
│ │ └── dist
│ │ ├── chartist.js
│ │ └── chartist.min.css
│ ├── Chart.js
│ │ └── dist
│ │ └── Chart.js
│ ├── chosen_v1.2.0
│ │ ├── chosen.jquery.min.js
│ │ ├── chosen.min.css
│ │ ├── chosen-sprite@2x.png
│ │ └── chosen-sprite.png
│ ├── cropper
│ │ └── dist
│ │ ├── cropper.css
│ │ └── cropper.js
│ ├── d3
│ │ └── d3.min.js
│ ├── datatables
│ │ └── media
│ │ ├── css
│ │ │ └── dataTables.bootstrap.css
│ │ ├── images
│ │ │ ├── favicon.ico
│ │ │ ├── sort_asc_disabled.png
│ │ │ ├── sort_asc.png
│ │ │ ├── sort_both.png
│ │ │ ├── sort_desc_disabled.png
│ │ │ ├── sort_desc.png
│ │ │ └── Sorting icons.psd
│ │ └── js
│ │ ├── dataTables.bootstrap.js
│ │ └── jquery.dataTables.min.js
│ ├── datatables-buttons
│ │ ├── css
│ │ │ ├── buttons.bootstrap4.scss
│ │ │ ├── buttons.bootstrap.scss
│ │ │ ├── buttons.dataTables.scss
│ │ │ ├── buttons.foundation.scss
│ │ │ ├── buttons.jqueryui.scss
│ │ │ ├── buttons.semanticui.scss
│ │ │ ├── common.scss
│ │ │ └── mixins.scss
│ │ └── js
│ │ ├── buttons.bootstrap4.js
│ │ ├── buttons.bootstrap.js
│ │ ├── buttons.colVis.js
│ │ ├── buttons.flash.js
│ │ ├── buttons.foundation.js
│ │ ├── buttons.html5.js
│ │ ├── buttons.jqueryui.js
│ │ ├── buttons.print.js
│ │ ├── buttons.semanticui.js
│ │ └── dataTables.buttons.js
│ ├── datatables-colvis
│ │ ├── css
│ │ │ └── dataTables.colVis.css
│ │ └── js
│ │ └── dataTables.colVis.js
│ ├── dataTables.fontAwesome
│ │ └── index.css
│ ├── datatables-responsive
│ │ └── js
│ │ ├── dataTables.responsive.js
│ │ └── responsive.bootstrap.js
│ ├── eonasdan-bootstrap-datetimepicker
│ │ └── build
│ │ ├── css
│ │ │ └── bootstrap-datetimepicker.min.css
│ │ └── js
│ │ └── bootstrap-datetimepicker.min.js
│ ├── fastclick
│ │ └── lib
│ │ └── fastclick.js
│ ├── flatdoc
│ │ └── flatdoc.js
│ ├── Flot
│ │ ├── jquery.flot.categories.js
│ │ ├── jquery.flot.js
│ │ ├── jquery.flot.pie.js
│ │ ├── jquery.flot.resize.js
│ │ └── jquery.flot.time.js
│ ├── flot-spline
│ │ └── js
│ │ └── jquery.flot.spline.min.js
│ ├── flot.tooltip
│ │ └── js
│ │ └── jquery.flot.tooltip.min.js
│ ├── fontawesome
│ │ ├── css
│ │ │ └── font-awesome.min.css
│ │ └── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ ├── fullcalendar
│ │ └── dist
│ │ ├── fullcalendar.css
│ │ ├── fullcalendar.min.js
│ │ └── gcal.js
│ ├── html.sortable
│ │ └── dist
│ │ └── html.sortable.js
│ ├── ika.jvectormap
│ │ ├── jquery-jvectormap-1.2.2.css
│ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ ├── jquery-jvectormap-us-mill-en.js
│ │ └── jquery-jvectormap-world-mill-en.js
│ ├── jqcloud2
│ │ └── dist
│ │ ├── jqcloud.css
│ │ └── jqcloud.js
│ ├── jqgrid
│ │ ├── css
│ │ │ └── ui.jqgrid.css
│ │ └── js
│ │ ├── i18n
│ │ │ └── grid.locale-en.js
│ │ └── jquery.jqGrid.js
│ ├── jquery
│ │ └── dist
│ │ └── jquery.js
│ ├── jquery.easing
│ │ └── js
│ │ └── jquery.easing.js
│ ├── jquery.easy-pie-chart
│ │ └── dist
│ │ └── jquery.easypiechart.js
│ ├── jQuery-gMap
│ │ └── jquery.gmap.min.js
│ ├── jquery.inputmask
│ │ └── dist
│ │ └── jquery.inputmask.bundle.js
│ ├── jquery-knob
│ │ └── js
│ │ └── jquery.knob.js
│ ├── jquery-localize-i18n
│ │ └── dist
│ │ └── jquery.localize.js
│ ├── jquery.steps
│ │ └── build
│ │ └── jquery.steps.js
│ ├── jQuery-Storage-API
│ │ └── jquery.storageapi.js
│ ├── jquery-ui
│ │ ├── jquery-ui.js
│ │ ├── themes
│ │ │ └── smoothness
│ │ │ ├── images
│ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ └── ui
│ │ ├── core.js
│ │ ├── data.js
│ │ ├── disable-selection.js
│ │ ├── effect.js
│ │ ├── effects
│ │ │ ├── effect-blind.js
│ │ │ ├── effect-bounce.js
│ │ │ ├── effect-clip.js
│ │ │ ├── effect-drop.js
│ │ │ ├── effect-explode.js
│ │ │ ├── effect-fade.js
│ │ │ ├── effect-fold.js
│ │ │ ├── effect-highlight.js
│ │ │ ├── effect-puff.js
│ │ │ ├── effect-pulsate.js
│ │ │ ├── effect-scale.js
│ │ │ ├── effect-shake.js
│ │ │ ├── effect-size.js
│ │ │ ├── effect-slide.js
│ │ │ └── effect-transfer.js
│ │ ├── escape-selector.js
│ │ ├── focusable.js
│ │ ├── form.js
│ │ ├── form-reset-mixin.js
│ │ ├── i18n
│ │ │ ├── datepicker-af.js
│ │ │ ├── datepicker-ar-DZ.js
│ │ │ ├── datepicker-ar.js
│ │ │ ├── datepicker-az.js
│ │ │ ├── datepicker-be.js
│ │ │ ├── datepicker-bg.js
│ │ │ ├── datepicker-bs.js
│ │ │ ├── datepicker-ca.js
│ │ │ ├── datepicker-cs.js
│ │ │ ├── datepicker-cy-GB.js
│ │ │ ├── datepicker-da.js
│ │ │ ├── datepicker-de.js
│ │ │ ├── datepicker-el.js
│ │ │ ├── datepicker-en-AU.js
│ │ │ ├── datepicker-en-GB.js
│ │ │ ├── datepicker-en-NZ.js
│ │ │ ├── datepicker-eo.js
│ │ │ ├── datepicker-es.js
│ │ │ ├── datepicker-et.js
│ │ │ ├── datepicker-eu.js
│ │ │ ├── datepicker-fa.js
│ │ │ ├── datepicker-fi.js
│ │ │ ├── datepicker-fo.js
│ │ │ ├── datepicker-fr-CA.js
│ │ │ ├── datepicker-fr-CH.js
│ │ │ ├── datepicker-fr.js
│ │ │ ├── datepicker-gl.js
│ │ │ ├── datepicker-he.js
│ │ │ ├── datepicker-hi.js
│ │ │ ├── datepicker-hr.js
│ │ │ ├── datepicker-hu.js
│ │ │ ├── datepicker-hy.js
│ │ │ ├── datepicker-id.js
│ │ │ ├── datepicker-is.js
│ │ │ ├── datepicker-it-CH.js
│ │ │ ├── datepicker-it.js
│ │ │ ├── datepicker-ja.js
│ │ │ ├── datepicker-ka.js
│ │ │ ├── datepicker-kk.js
│ │ │ ├── datepicker-km.js
│ │ │ ├── datepicker-ko.js
│ │ │ ├── datepicker-ky.js
│ │ │ ├── datepicker-lb.js
│ │ │ ├── datepicker-lt.js
│ │ │ ├── datepicker-lv.js
│ │ │ ├── datepicker-mk.js
│ │ │ ├── datepicker-ml.js
│ │ │ ├── datepicker-ms.js
│ │ │ ├── datepicker-nb.js
│ │ │ ├── datepicker-nl-BE.js
│ │ │ ├── datepicker-nl.js
│ │ │ ├── datepicker-nn.js
│ │ │ ├── datepicker-no.js
│ │ │ ├── datepicker-pl.js
│ │ │ ├── datepicker-pt-BR.js
│ │ │ ├── datepicker-pt.js
│ │ │ ├── datepicker-rm.js
│ │ │ ├── datepicker-ro.js
│ │ │ ├── datepicker-ru.js
│ │ │ ├── datepicker-sk.js
│ │ │ ├── datepicker-sl.js
│ │ │ ├── datepicker-sq.js
│ │ │ ├── datepicker-sr.js
│ │ │ ├── datepicker-sr-SR.js
│ │ │ ├── datepicker-sv.js
│ │ │ ├── datepicker-ta.js
│ │ │ ├── datepicker-th.js
│ │ │ ├── datepicker-tj.js
│ │ │ ├── datepicker-tr.js
│ │ │ ├── datepicker-uk.js
│ │ │ ├── datepicker-vi.js
│ │ │ ├── datepicker-zh-CN.js
│ │ │ ├── datepicker-zh-HK.js
│ │ │ └── datepicker-zh-TW.js
│ │ ├── ie.js
│ │ ├── jquery-1-7.js
│ │ ├── keycode.js
│ │ ├── labels.js
│ │ ├── minified
│ │ │ ├── core.js
│ │ │ ├── data.js
│ │ │ ├── disable-selection.js
│ │ │ ├── effect.js
│ │ │ ├── escape-selector.js
│ │ │ ├── focusable.js
│ │ │ ├── form.js
│ │ │ ├── form-reset-mixin.js
│ │ │ ├── i18n
│ │ │ │ ├── datepicker-af.js
│ │ │ │ ├── datepicker-ar-DZ.js
│ │ │ │ ├── datepicker-ar.js
│ │ │ │ ├── datepicker-az.js
│ │ │ │ ├── datepicker-be.js
│ │ │ │ ├── datepicker-bg.js
│ │ │ │ ├── datepicker-bs.js
│ │ │ │ ├── datepicker-ca.js
│ │ │ │ ├── datepicker-cs.js
│ │ │ │ ├── datepicker-cy-GB.js
│ │ │ │ ├── datepicker-da.js
│ │ │ │ ├── datepicker-de.js
│ │ │ │ ├── datepicker-el.js
│ │ │ │ ├── datepicker-en-AU.js
│ │ │ │ ├── datepicker-en-GB.js
│ │ │ │ ├── datepicker-en-NZ.js
│ │ │ │ ├── datepicker-eo.js
│ │ │ │ ├── datepicker-es.js
│ │ │ │ ├── datepicker-et.js
│ │ │ │ ├── datepicker-eu.js
│ │ │ │ ├── datepicker-fa.js
│ │ │ │ ├── datepicker-fi.js
│ │ │ │ ├── datepicker-fo.js
│ │ │ │ ├── datepicker-fr-CA.js
│ │ │ │ ├── datepicker-fr-CH.js
│ │ │ │ ├── datepicker-fr.js
│ │ │ │ ├── datepicker-gl.js
│ │ │ │ ├── datepicker-he.js
│ │ │ │ ├── datepicker-hi.js
│ │ │ │ ├── datepicker-hr.js
│ │ │ │ ├── datepicker-hu.js
│ │ │ │ ├── datepicker-hy.js
│ │ │ │ ├── datepicker-id.js
│ │ │ │ ├── datepicker-is.js
│ │ │ │ ├── datepicker-it-CH.js
│ │ │ │ ├── datepicker-it.js
│ │ │ │ ├── datepicker-ja.js
│ │ │ │ ├── datepicker-ka.js
│ │ │ │ ├── datepicker-kk.js
│ │ │ │ ├── datepicker-km.js
│ │ │ │ ├── datepicker-ko.js
│ │ │ │ ├── datepicker-ky.js
│ │ │ │ ├── datepicker-lb.js
│ │ │ │ ├── datepicker-lt.js
│ │ │ │ ├── datepicker-lv.js
│ │ │ │ ├── datepicker-mk.js
│ │ │ │ ├── datepicker-ml.js
│ │ │ │ ├── datepicker-ms.js
│ │ │ │ ├── datepicker-nb.js
│ │ │ │ ├── datepicker-nl-BE.js
│ │ │ │ ├── datepicker-nl.js
│ │ │ │ ├── datepicker-nn.js
│ │ │ │ ├── datepicker-no.js
│ │ │ │ ├── datepicker-pl.js
│ │ │ │ ├── datepicker-pt-BR.js
│ │ │ │ ├── datepicker-pt.js
│ │ │ │ ├── datepicker-rm.js
│ │ │ │ ├── datepicker-ro.js
│ │ │ │ ├── datepicker-ru.js
│ │ │ │ ├── datepicker-sk.js
│ │ │ │ ├── datepicker-sl.js
│ │ │ │ ├── datepicker-sq.js
│ │ │ │ ├── datepicker-sr.js
│ │ │ │ ├── datepicker-sr-SR.js
│ │ │ │ ├── datepicker-sv.js
│ │ │ │ ├── datepicker-ta.js
│ │ │ │ ├── datepicker-th.js
│ │ │ │ ├── datepicker-tj.js
│ │ │ │ ├── datepicker-tr.js
│ │ │ │ ├── datepicker-uk.js
│ │ │ │ ├── datepicker-vi.js
│ │ │ │ ├── datepicker-zh-CN.js
│ │ │ │ ├── datepicker-zh-HK.js
│ │ │ │ └── datepicker-zh-TW.js
│ │ │ ├── ie.js
│ │ │ ├── jquery-1-7.js
│ │ │ ├── keycode.js
│ │ │ ├── labels.js
│ │ │ ├── plugin.js
│ │ │ ├── position.js
│ │ │ ├── safe-active-element.js
│ │ │ ├── safe-blur.js
│ │ │ ├── scroll-parent.js
│ │ │ ├── tabbable.js
│ │ │ ├── unique-id.js
│ │ │ ├── version.js
│ │ │ └── widget.js
│ │ ├── plugin.js
│ │ ├── position.js
│ │ ├── safe-active-element.js
│ │ ├── safe-blur.js
│ │ ├── scroll-parent.js
│ │ ├── tabbable.js
│ │ ├── unique-id.js
│ │ ├── version.js
│ │ ├── widget.js
│ │ └── widgets
│ │ ├── accordion.js
│ │ ├── autocomplete.js
│ │ ├── button.js
│ │ ├── checkboxradio.js
│ │ ├── controlgroup.js
│ │ ├── datepicker.js
│ │ ├── dialog.js
│ │ ├── draggable.js
│ │ ├── droppable.js
│ │ ├── menu.js
│ │ ├── mouse.js
│ │ ├── progressbar.js
│ │ ├── resizable.js
│ │ ├── selectable.js
│ │ ├── selectmenu.js
│ │ ├── slider.js
│ │ ├── sortable.js
│ │ ├── spinner.js
│ │ ├── tabs.js
│ │ └── tooltip.js
│ ├── jqueryui-touch-punch
│ │ └── jquery.ui.touch-punch.min.js
│ ├── jquery-validation
│ │ └── dist
│ │ └── jquery.validate.js
│ ├── loaders.css
│ │ └── loaders.css
│ ├── matchMedia
│ │ └── matchMedia.js
│ ├── mjolnic-bootstrap-colorpicker
│ │ └── dist
│ │ ├── css
│ │ │ └── bootstrap-colorpicker.css
│ │ ├── img
│ │ │ └── bootstrap-colorpicker
│ │ │ ├── alpha-horizontal.png
│ │ │ ├── alpha.png
│ │ │ ├── hue-horizontal.png
│ │ │ ├── hue.png
│ │ │ └── saturation.png
│ │ └── js
│ │ └── bootstrap-colorpicker.js
│ ├── modernizr
│ │ └── modernizr.custom.js
│ ├── moment
│ │ └── min
│ │ └── moment-with-locales.min.js
│ ├── morris.js
│ │ ├── morris.css
│ │ └── morris.js
│ ├── nestable
│ │ └── jquery.nestable.js
│ ├── parsleyjs
│ │ └── dist
│ │ └── parsley.min.js
│ ├── raphael
│ │ └── raphael.js
│ ├── rickshaw
│ │ ├── rickshaw.js
│ │ └── rickshaw.min.css
│ ├── screenfull
│ │ └── dist
│ │ └── screenfull.js
│ ├── seiyria-bootstrap-slider
│ │ └── dist
│ │ ├── bootstrap-slider.min.js
│ │ └── css
│ │ └── bootstrap-slider.min.css
│ ├── select2
│ │ └── dist
│ │ ├── css
│ │ │ └── select2.css
│ │ └── js
│ │ └── select2.js
│ ├── select2-bootstrap-theme
│ │ └── dist
│ │ └── select2-bootstrap.css
│ ├── simple-line-icons
│ │ ├── css
│ │ │ └── simple-line-icons.css
│ │ └── fonts
│ │ ├── Simple-Line-Icons.eot
│ │ ├── Simple-Line-Icons.svg
│ │ ├── Simple-Line-Icons.ttf
│ │ ├── Simple-Line-Icons.woff
│ │ └── Simple-Line-Icons.woff2
│ ├── skycons
│ │ └── skycons.js
│ ├── slimScroll
│ │ └── jquery.slimscroll.min.js
│ ├── sparkline
│ │ └── index.js
│ ├── spinkit
│ │ └── css
│ │ └── spinkit.css
│ ├── sweetalert
│ │ └── dist
│ │ ├── sweetalert.css
│ │ └── sweetalert.min.js
│ ├── weather-icons
│ │ ├── css
│ │ │ ├── weather-icons.min.css
│ │ │ └── weather-icons-wind.min.css
│ │ └── font
│ │ ├── weathericons-regular-webfont.eot
│ │ ├── weathericons-regular-webfont.svg
│ │ ├── weathericons-regular-webfont.ttf
│ │ ├── weathericons-regular-webfont.woff
│ │ └── weathericons-regular-webfont.woff2
│ ├── whirl
│ │ └── dist
│ │ └── whirl.css
│ └── x-editable
│ └── dist
│ └── bootstrap3-editable
│ ├── css
│ │ └── bootstrap-editable.css
│ ├── img
│ │ ├── clear.png
│ │ └── loading.gif
│ └── js
│ ├── bootstrap-editable.js
│ └── bootstrap-editable.min.js
├── backend-jquery-seed
│ ├── app
│ │ ├── css
│ │ │ ├── app.css
│ │ │ ├── app-rtl.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap-rtl.css
│ │ │ ├── theme-a.css
│ │ │ ├── theme-b.css
│ │ │ ├── theme-c.css
│ │ │ ├── theme-d.css
│ │ │ ├── theme-e.css
│ │ │ ├── theme-f.css
│ │ │ ├── theme-g.css
│ │ │ └── theme-h.css
│ │ ├── documentation
│ │ │ └── readme.md
│ │ ├── i18n
│ │ │ ├── site-en.json
│ │ │ └── site-es.json
│ │ ├── img
│ │ │ ├── bg10.jpg
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.jpg
│ │ │ ├── bg3.jpg
│ │ │ ├── bg4.jpg
│ │ │ ├── bg5.jpg
│ │ │ ├── bg6.jpg
│ │ │ ├── bg7.jpg
│ │ │ ├── bg8.jpg
│ │ │ ├── bg9.jpg
│ │ │ ├── dummy.png
│ │ │ ├── lock-bg.jpg
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ ├── mb-sample.jpg
│ │ │ ├── mockup.png
│ │ │ ├── profile-bg.jpg
│ │ │ └── user
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 04.jpg
│ │ │ ├── 05.jpg
│ │ │ ├── 06.jpg
│ │ │ ├── 07.jpg
│ │ │ ├── 08.jpg
│ │ │ ├── 09.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ └── 13.jpg
│ │ ├── js
│ │ │ └── app.js
│ │ ├── singleview.html
│ │ └── submenu.html
│ ├── index.html
│ ├── master
│ │ ├── bower.json
│ │ ├── gulpfile.js
│ │ ├── js
│ │ │ ├── app.init.js
│ │ │ ├── custom
│ │ │ │ └── custom.js
│ │ │ └── modules
│ │ │ ├── bootstrap-start.js
│ │ │ ├── clear-storage.js
│ │ │ ├── constants.js
│ │ │ ├── localize.js
│ │ │ ├── navbar-search.js
│ │ │ ├── sidebar.js
│ │ │ ├── toggle-state.js
│ │ │ └── utils.js
│ │ ├── less
│ │ │ ├── app
│ │ │ │ ├── animate.less
│ │ │ │ ├── bootstrap-reset.less
│ │ │ │ ├── breadcrumbs.less
│ │ │ │ ├── layout-animation.less
│ │ │ │ ├── layout-extra.less
│ │ │ │ ├── layout.less
│ │ │ │ ├── media-queries.less
│ │ │ │ ├── offsidebar.less
│ │ │ │ ├── print.less
│ │ │ │ ├── sidebar.less
│ │ │ │ ├── top-navbar.less
│ │ │ │ ├── typo.less
│ │ │ │ └── utils.less
│ │ │ ├── app.less
│ │ │ ├── bootstrap
│ │ │ │ ├── alerts.less
│ │ │ │ ├── badges.less
│ │ │ │ ├── bootstrap.less
│ │ │ │ ├── breadcrumbs.less
│ │ │ │ ├── button-groups.less
│ │ │ │ ├── buttons.less
│ │ │ │ ├── carousel.less
│ │ │ │ ├── close.less
│ │ │ │ ├── code.less
│ │ │ │ ├── component-animations.less
│ │ │ │ ├── dropdowns.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── glyphicons.less
│ │ │ │ ├── grid.less
│ │ │ │ ├── input-groups.less
│ │ │ │ ├── jumbotron.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── media.less
│ │ │ │ ├── mixins
│ │ │ │ │ ├── alerts.less
│ │ │ │ │ ├── background-variant.less
│ │ │ │ │ ├── border-radius.less
│ │ │ │ │ ├── buttons.less
│ │ │ │ │ ├── center-block.less
│ │ │ │ │ ├── clearfix.less
│ │ │ │ │ ├── forms.less
│ │ │ │ │ ├── gradients.less
│ │ │ │ │ ├── grid-framework.less
│ │ │ │ │ ├── grid.less
│ │ │ │ │ ├── hide-text.less
│ │ │ │ │ ├── image.less
│ │ │ │ │ ├── labels.less
│ │ │ │ │ ├── list-group.less
│ │ │ │ │ ├── nav-divider.less
│ │ │ │ │ ├── nav-vertical-align.less
│ │ │ │ │ ├── opacity.less
│ │ │ │ │ ├── pagination.less
│ │ │ │ │ ├── panels.less
│ │ │ │ │ ├── progress-bar.less
│ │ │ │ │ ├── reset-filter.less
│ │ │ │ │ ├── reset-text.less
│ │ │ │ │ ├── resize.less
│ │ │ │ │ ├── responsive-visibility.less
│ │ │ │ │ ├── size.less
│ │ │ │ │ ├── tab-focus.less
│ │ │ │ │ ├── table-row.less
│ │ │ │ │ ├── text-emphasis.less
│ │ │ │ │ ├── text-overflow.less
│ │ │ │ │ └── vendor-prefixes.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── modals.less
│ │ │ │ ├── navbar.less
│ │ │ │ ├── navs.less
│ │ │ │ ├── normalize.less
│ │ │ │ ├── pager.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── popovers.less
│ │ │ │ ├── print.less
│ │ │ │ ├── progress-bars.less
│ │ │ │ ├── responsive-embed.less
│ │ │ │ ├── responsive-utilities.less
│ │ │ │ ├── scaffolding.less
│ │ │ │ ├── tables.less
│ │ │ │ ├── theme.less
│ │ │ │ ├── thumbnails.less
│ │ │ │ ├── tooltip.less
│ │ │ │ ├── type.less
│ │ │ │ ├── utilities.less
│ │ │ │ ├── variables.less
│ │ │ │ └── wells.less
│ │ │ ├── bootstrap.less
│ │ │ └── themes
│ │ │ ├── theme-a.less
│ │ │ ├── theme-b.less
│ │ │ ├── theme-c.less
│ │ │ ├── theme-d.less
│ │ │ ├── theme-e.less
│ │ │ ├── theme-f.less
│ │ │ ├── theme-g.less
│ │ │ └── theme-h.less
│ │ ├── package.json
│ │ ├── package-lock.json
│ │ ├── pug
│ │ │ ├── _layout_h.pug
│ │ │ ├── _layout.pug
│ │ │ └── views
│ │ │ ├── partials
│ │ │ │ ├── _footer.pug
│ │ │ │ ├── _head.pug
│ │ │ │ ├── _offsidebar.pug
│ │ │ │ ├── _offsidebar-tab1.pug
│ │ │ │ ├── _offsidebar-tab2.pug
│ │ │ │ ├── _scripts.pug
│ │ │ │ ├── _sidebar.pug
│ │ │ │ └── _top-navbar.pug
│ │ │ ├── singleview.pug
│ │ │ └── submenu.pug
│ │ ├── sass
│ │ │ ├── app
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── breadcrumbs.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── media-queries.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── utils-definitions.scss
│ │ │ │ ├── utils.scss
│ │ │ │ └── variables.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _badges.scss
│ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ ├── _close.scss
│ │ │ │ │ ├── _code.scss
│ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _media.scss
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modals.scss
│ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ ├── _navs.scss
│ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ ├── _pager.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ ├── _print.scss
│ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _tables.scss
│ │ │ │ │ ├── _theme.scss
│ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ ├── _variables.scss
│ │ │ │ │ └── _wells.scss
│ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ ├── _bootstrap.scss
│ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ ├── sidebar.json
│ │ └── vendor.json
│ └── vendor
│ ├── animate.css
│ │ └── animate.min.css
│ ├── animo.js
│ │ └── animo.js
│ ├── bootstrap
│ │ └── dist
│ │ ├── css
│ │ │ └── bootstrap.css
│ │ └── js
│ │ └── bootstrap.js
│ ├── fontawesome
│ │ ├── css
│ │ │ └── font-awesome.min.css
│ │ └── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ ├── jquery
│ │ └── dist
│ │ └── jquery.js
│ ├── jquery.easing
│ │ └── js
│ │ └── jquery.easing.js
│ ├── jquery-localize-i18n
│ │ └── dist
│ │ └── jquery.localize.js
│ ├── jQuery-Storage-API
│ │ └── jquery.storageapi.js
│ ├── modernizr
│ │ └── modernizr.custom.js
│ ├── simple-line-icons
│ │ ├── css
│ │ │ └── simple-line-icons.css
│ │ └── fonts
│ │ ├── Simple-Line-Icons.eot
│ │ ├── Simple-Line-Icons.svg
│ │ ├── Simple-Line-Icons.ttf
│ │ ├── Simple-Line-Icons.woff
│ │ └── Simple-Line-Icons.woff2
│ └── whirl
│ └── dist
│ └── whirl.css
├── backend-meteor-angular
│ ├── client
│ │ ├── index.html
│ │ ├── main.js
│ │ └── views
│ │ ├── app-h.html
│ │ ├── app.html
│ │ ├── blog-articles.html
│ │ ├── blog-article-view.html
│ │ ├── blog.html
│ │ ├── blog-post.html
│ │ ├── bug-tracker.html
│ │ ├── buttons.html
│ │ ├── calendar.html
│ │ ├── carousel.html
│ │ ├── chart-chartist.html
│ │ ├── chart-flot.html
│ │ ├── chart-js.html
│ │ ├── chart-morris.html
│ │ ├── chart-radial.html
│ │ ├── chart-rickshaw.html
│ │ ├── code-editor.html
│ │ ├── colors.html
│ │ ├── contact-details.html
│ │ ├── contacts.html
│ │ ├── dashboard.html
│ │ ├── dashboard_v2.html
│ │ ├── dashboard_v3.html
│ │ ├── documentation.html
│ │ ├── dropdown-animations.html
│ │ ├── ecommerce-checkout.html
│ │ ├── ecommerce-orders.html
│ │ ├── ecommerce-order-view.html
│ │ ├── ecommerce-products.html
│ │ ├── ecommerce-product-view.html
│ │ ├── faq.html
│ │ ├── file-manager.html
│ │ ├── followers.html
│ │ ├── form-extended.html
│ │ ├── form-imagecrop.html
│ │ ├── form-standard.html
│ │ ├── form-uiselect.html
│ │ ├── form-upload.html
│ │ ├── form-validation.html
│ │ ├── form-wizard.html
│ │ ├── form-xeditable.html
│ │ ├── forum-discussion.html
│ │ ├── forum.html
│ │ ├── forum-topics.html
│ │ ├── grid.html
│ │ ├── grid-masonry-deck-card.html
│ │ ├── grid-masonry-deck.html
│ │ ├── grid-masonry.html
│ │ ├── help-center.html
│ │ ├── icons-font.html
│ │ ├── icons-weather.html
│ │ ├── infinite-scroll.html
│ │ ├── interaction.html
│ │ ├── invoice.html
│ │ ├── localization.html
│ │ ├── mailbox-compose.html
│ │ ├── mailbox.html
│ │ ├── mailbox-inbox.html
│ │ ├── mailbox-view.html
│ │ ├── maps-google.html
│ │ ├── maps-vector.html
│ │ ├── nav-tree.html
│ │ ├── nestable.html
│ │ ├── ngdialog.html
│ │ ├── ngdialog-template.html
│ │ ├── notifications.html
│ │ ├── pages
│ │ │ ├── 404.html
│ │ │ ├── 500.html
│ │ │ ├── lock.html
│ │ │ ├── login.html
│ │ │ ├── maintenance.html
│ │ │ ├── page.html
│ │ │ ├── recover.html
│ │ │ └── register.html
│ │ ├── panels.html
│ │ ├── partials
│ │ │ ├── chat.html
│ │ │ ├── footer.html
│ │ │ ├── offsidebar.html
│ │ │ ├── settings.html
│ │ │ ├── sidebar.html
│ │ │ ├── top-navbar-h.html
│ │ │ └── top-navbar.html
│ │ ├── plans.html
│ │ ├── portlets.html
│ │ ├── profile.html
│ │ ├── project-details.html
│ │ ├── projects.html
│ │ ├── search.html
│ │ ├── settings.html
│ │ ├── social-board.html
│ │ ├── sortable.html
│ │ ├── spinners.html
│ │ ├── sweetalert.html
│ │ ├── table-angulargrid.html
│ │ ├── table-datatable.html
│ │ ├── table-extended.html
│ │ ├── table-ngtable.html
│ │ ├── table-standard.html
│ │ ├── table-uigrid.html
│ │ ├── table-xeditable.html
│ │ ├── team-viewer.html
│ │ ├── template.html
│ │ ├── timeline.html
│ │ ├── todo.html
│ │ ├── tour.html
│ │ ├── typo.html
│ │ ├── vote-links.html
│ │ └── widgets.html
│ ├── imports
│ │ ├── scripts
│ │ │ ├── app.js
│ │ │ ├── custom
│ │ │ │ ├── custom.controller.js
│ │ │ │ ├── custom.module.js
│ │ │ │ └── README.txt
│ │ │ └── modules
│ │ │ ├── app.module.js
│ │ │ ├── bootstrapui
│ │ │ │ ├── alerts.controller.js
│ │ │ │ ├── bootstrapui.config.js
│ │ │ │ ├── bootstrapui.module.js
│ │ │ │ ├── buttons.controller.js
│ │ │ │ ├── carousel.controller.js
│ │ │ │ ├── datepicker.controller.js
│ │ │ │ ├── modals.controller.js
│ │ │ │ ├── pagination.controller.js
│ │ │ │ ├── popover.controller.js
│ │ │ │ ├── progress.controller.js
│ │ │ │ ├── rating.controller.js
│ │ │ │ ├── timepicker.controller.js
│ │ │ │ ├── tooltip.controller.js
│ │ │ │ └── typeahead.controller.js
│ │ │ ├── charts
│ │ │ │ ├── chartist.controller.js
│ │ │ │ ├── chartjs.controller.js
│ │ │ │ ├── charts.module.js
│ │ │ │ ├── flot.controller.js
│ │ │ │ ├── flot-data.service.js
│ │ │ │ ├── flot.directive.js
│ │ │ │ ├── morris.controller.js
│ │ │ │ ├── morris.directive.js
│ │ │ │ ├── piecharts.controller.js
│ │ │ │ ├── rickshaw.controller.js
│ │ │ │ └── sparklines.directive.js
│ │ │ ├── colors
│ │ │ │ ├── colors.contant.js
│ │ │ │ ├── colors.module.js
│ │ │ │ └── colors.service.js
│ │ │ ├── core
│ │ │ │ ├── core.config.js
│ │ │ │ ├── core.constants.js
│ │ │ │ ├── core.module.js
│ │ │ │ └── core.run.js
│ │ │ ├── dashboard
│ │ │ │ ├── dashboard.controller.js
│ │ │ │ ├── dashboard.module.js
│ │ │ │ ├── dashboard.v2.controller.js
│ │ │ │ └── dashboard.v3.controller.js
│ │ │ ├── elements
│ │ │ │ ├── carousel.controller.js
│ │ │ │ ├── dialog.controller.js
│ │ │ │ ├── elements.module.js
│ │ │ │ ├── infinite-scroll.controller.js
│ │ │ │ ├── masonry-deck.controller.js
│ │ │ │ ├── navtree.controller.js
│ │ │ │ ├── nestable.controller.js
│ │ │ │ ├── scroll.directive.js
│ │ │ │ ├── sortable.controller.js
│ │ │ │ ├── sweetalert.controller.js
│ │ │ │ ├── toaster.controller.js
│ │ │ │ └── tour.controller.js
│ │ │ ├── extras
│ │ │ │ ├── article.controller.js
│ │ │ │ ├── calendar.controller.js
│ │ │ │ ├── code-editor.controller.js
│ │ │ │ ├── code-editor-loadtree.service.js
│ │ │ │ ├── extras.module.js
│ │ │ │ ├── todo.controller.js
│ │ │ │ └── word-cloud.controller.js
│ │ │ ├── flatdoc
│ │ │ │ ├── flatdoc.directive.js
│ │ │ │ └── flatdoc.module.js
│ │ │ ├── forms
│ │ │ │ ├── color-picker.controller.js
│ │ │ │ ├── filestyle.directive.js
│ │ │ │ ├── form-imgcrop.controller.js
│ │ │ │ ├── forms.controller.js
│ │ │ │ ├── forms.module.js
│ │ │ │ ├── form-validation.controller.js
│ │ │ │ ├── form-wizard.directive.js
│ │ │ │ ├── form-xeditable.controller.js
│ │ │ │ ├── masked.directive.js
│ │ │ │ ├── props.filter.js
│ │ │ │ ├── tags-input.directive.js
│ │ │ │ ├── uiselect.controller.js
│ │ │ │ └── upload.controller.js
│ │ │ ├── icons
│ │ │ │ ├── icons.module.js
│ │ │ │ └── icons-skycons.directive.js
│ │ │ ├── lazyload
│ │ │ │ ├── lazyload.config.js
│ │ │ │ ├── lazyload.constants.js
│ │ │ │ └── lazyload.module.js
│ │ │ ├── loadingbar
│ │ │ │ ├── loadingbar.config.js
│ │ │ │ ├── loadingbar.module.js
│ │ │ │ └── loadingbar.run.js
│ │ │ ├── locale
│ │ │ │ ├── locale.config.js
│ │ │ │ ├── locale.controller.js
│ │ │ │ └── locale.module.js
│ │ │ ├── mailbox
│ │ │ │ ├── mailbox.controller.js
│ │ │ │ ├── mailbox.module.js
│ │ │ │ ├── mailfolder.controller.js
│ │ │ │ ├── mails.service.js
│ │ │ │ └── mailview.controller.js
│ │ │ ├── maps
│ │ │ │ ├── maps-google.controller.js
│ │ │ │ ├── maps-google-modal.controller.js
│ │ │ │ ├── maps.module.js
│ │ │ │ ├── vector-map.directive.js
│ │ │ │ ├── vector-maps.controller.js
│ │ │ │ └── vector-map.service.js
│ │ │ ├── navsearch
│ │ │ │ ├── navsearch.directive.js
│ │ │ │ ├── navsearch.module.js
│ │ │ │ └── navsearch.service.js
│ │ │ ├── notify
│ │ │ │ ├── notify.controller.js
│ │ │ │ ├── notify.directive.js
│ │ │ │ ├── notify.module.js
│ │ │ │ └── notify.service.js
│ │ │ ├── pages
│ │ │ │ ├── access-login.controller.js
│ │ │ │ ├── access-register.controller.js
│ │ │ │ └── pages.module.js
│ │ │ ├── panels
│ │ │ │ ├── panel-collapse.directive.js
│ │ │ │ ├── panel-dismiss.directive.js
│ │ │ │ ├── panel-refresh.directive.js
│ │ │ │ ├── panels.controller.js
│ │ │ │ ├── panels.module.js
│ │ │ │ ├── panel-tools.directive.js
│ │ │ │ └── portlet.controller.js
│ │ │ ├── preloader
│ │ │ │ ├── preloader.directive.js
│ │ │ │ └── preloader.module.js
│ │ │ ├── routes
│ │ │ │ ├── route-helpers.provider.js
│ │ │ │ ├── routes.config.js
│ │ │ │ └── routes.module.js
│ │ │ ├── settings
│ │ │ │ ├── settings.module.js
│ │ │ │ └── settings.run.js
│ │ │ ├── sidebar
│ │ │ │ ├── sidebar.controller.js
│ │ │ │ ├── sidebar.directive.js
│ │ │ │ ├── sidebar.module.js
│ │ │ │ ├── sidebar.service.js
│ │ │ │ └── sidebar.userblock.controller.js
│ │ │ ├── tables
│ │ │ │ ├── angular-grid.controller.js
│ │ │ │ ├── datatable.controller.js
│ │ │ │ ├── ngtable.controller.js
│ │ │ │ ├── ngtable-data.service.js
│ │ │ │ ├── tables.module.js
│ │ │ │ ├── table-xeditable.controller.js
│ │ │ │ └── uigrid.controller.js
│ │ │ ├── translate
│ │ │ │ ├── translate.config.js
│ │ │ │ ├── translate.module.js
│ │ │ │ └── translate.run.js
│ │ │ └── utils
│ │ │ ├── animate-enabled.directive.js
│ │ │ ├── browser.service.js
│ │ │ ├── clear-storage.directive.js
│ │ │ ├── fullscreen.directive.js
│ │ │ ├── load-css.directive.js
│ │ │ ├── now.directive.js
│ │ │ ├── table-checkall.directive.js
│ │ │ ├── trigger-resize.directive.js
│ │ │ ├── utils.module.js
│ │ │ └── utils.service.js
│ │ └── styles
│ │ ├── app
│ │ │ ├── alerts.less
│ │ │ ├── animate.less
│ │ │ ├── bootstrap-reset.less
│ │ │ ├── breadcrumbs.less
│ │ │ ├── button-extra.less
│ │ │ ├── calendar.less
│ │ │ ├── carousel.less
│ │ │ ├── chart-easypie.less
│ │ │ ├── chart-flot.less
│ │ │ ├── circles.less
│ │ │ ├── code-editor.less
│ │ │ ├── datatable.less
│ │ │ ├── datepicker.less
│ │ │ ├── docs.less
│ │ │ ├── dropdown-extra.less
│ │ │ ├── font-awesome.less
│ │ │ ├── form-elements.less
│ │ │ ├── form-imgcrop.less
│ │ │ ├── form-tags.less
│ │ │ ├── form-validation.less
│ │ │ ├── form-wizard.less
│ │ │ ├── gmap.less
│ │ │ ├── half-float.less
│ │ │ ├── layout-animation.less
│ │ │ ├── layout-extra.less
│ │ │ ├── layout.less
│ │ │ ├── loading-bar.less
│ │ │ ├── mailbox.less
│ │ │ ├── masonry-grid-deck.less
│ │ │ ├── masonry-grid.less
│ │ │ ├── media-queries.less
│ │ │ ├── nestable.less
│ │ │ ├── ngdialog.less
│ │ │ ├── ngwig.less
│ │ │ ├── notify.less
│ │ │ ├── offsidebar.less
│ │ │ ├── panels.less
│ │ │ ├── placeholder.less
│ │ │ ├── plans.less
│ │ │ ├── plugins.less
│ │ │ ├── portlets.less
│ │ │ ├── preloader.less
│ │ │ ├── print.less
│ │ │ ├── progress-extra.less
│ │ │ ├── radial-bar.less
│ │ │ ├── row-extra.less
│ │ │ ├── settings.less
│ │ │ ├── sidebar.less
│ │ │ ├── slim-scroll.less
│ │ │ ├── spinner.less
│ │ │ ├── table-angulargrid.less
│ │ │ ├── table-extras.less
│ │ │ ├── table-grid.less
│ │ │ ├── table-ngtable.less
│ │ │ ├── table-uigrid.less
│ │ │ ├── timeline.less
│ │ │ ├── todo.less
│ │ │ ├── top-navbar.less
│ │ │ ├── typeahead.less
│ │ │ ├── typo.less
│ │ │ ├── uiselect.less
│ │ │ ├── user-block.less
│ │ │ ├── utils.less
│ │ │ ├── vector-map.less
│ │ │ └── widget.less
│ │ ├── app.less
│ │ ├── bootstrap
│ │ │ ├── alerts.less
│ │ │ ├── badges.less
│ │ │ ├── bootstrap.less
│ │ │ ├── breadcrumbs.less
│ │ │ ├── button-groups.less
│ │ │ ├── buttons.less
│ │ │ ├── carousel.less
│ │ │ ├── close.less
│ │ │ ├── code.less
│ │ │ ├── component-animations.less
│ │ │ ├── dropdowns.less
│ │ │ ├── forms.less
│ │ │ ├── glyphicons.less
│ │ │ ├── grid.less
│ │ │ ├── input-groups.less
│ │ │ ├── jumbotron.less
│ │ │ ├── labels.less
│ │ │ ├── list-group.less
│ │ │ ├── media.less
│ │ │ ├── mixins
│ │ │ │ ├── alerts.less
│ │ │ │ ├── background-variant.less
│ │ │ │ ├── border-radius.less
│ │ │ │ ├── buttons.less
│ │ │ │ ├── center-block.less
│ │ │ │ ├── clearfix.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── gradients.less
│ │ │ │ ├── grid-framework.less
│ │ │ │ ├── grid.less
│ │ │ │ ├── hide-text.less
│ │ │ │ ├── image.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── nav-divider.less
│ │ │ │ ├── nav-vertical-align.less
│ │ │ │ ├── opacity.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── progress-bar.less
│ │ │ │ ├── reset-filter.less
│ │ │ │ ├── reset-text.less
│ │ │ │ ├── resize.less
│ │ │ │ ├── responsive-visibility.less
│ │ │ │ ├── size.less
│ │ │ │ ├── tab-focus.less
│ │ │ │ ├── table-row.less
│ │ │ │ ├── text-emphasis.less
│ │ │ │ ├── text-overflow.less
│ │ │ │ └── vendor-prefixes.less
│ │ │ ├── mixins.less
│ │ │ ├── modals.less
│ │ │ ├── navbar.less
│ │ │ ├── navs.less
│ │ │ ├── normalize.less
│ │ │ ├── pager.less
│ │ │ ├── pagination.less
│ │ │ ├── panels.less
│ │ │ ├── popovers.less
│ │ │ ├── print.less
│ │ │ ├── progress-bars.less
│ │ │ ├── responsive-embed.less
│ │ │ ├── responsive-utilities.less
│ │ │ ├── scaffolding.less
│ │ │ ├── tables.less
│ │ │ ├── theme.less
│ │ │ ├── thumbnails.less
│ │ │ ├── tooltip.less
│ │ │ ├── type.less
│ │ │ ├── utilities.less
│ │ │ ├── variables.less
│ │ │ └── wells.less
│ │ ├── bootstrap.less
│ │ └── themes
│ │ ├── theme-a.less
│ │ ├── theme-b.less
│ │ ├── theme-c.less
│ │ ├── theme-d.less
│ │ ├── theme-e.less
│ │ ├── theme-f.less
│ │ ├── theme-g.less
│ │ └── theme-h.less
│ ├── package.json
│ ├── package-lock.json
│ ├── private
│ │ └── i18n
│ │ ├── en.json
│ │ └── es_AR.json
│ ├── public
│ │ ├── api
│ │ │ ├── ag-owinners.json
│ │ │ ├── chart
│ │ │ │ ├── area.json
│ │ │ │ ├── bar.json
│ │ │ │ ├── barstacked.json
│ │ │ │ ├── barstackedv2.json
│ │ │ │ ├── donut.json
│ │ │ │ ├── line.json
│ │ │ │ ├── pie.json
│ │ │ │ ├── realtime.json
│ │ │ │ ├── spline.json
│ │ │ │ ├── splinev2.json
│ │ │ │ └── splinev3.json
│ │ │ ├── chosen-states.json
│ │ │ ├── cities.json
│ │ │ ├── datatable.json
│ │ │ ├── editor
│ │ │ │ ├── filetree.json
│ │ │ │ └── source
│ │ │ │ ├── another.html
│ │ │ │ ├── css
│ │ │ │ │ └── style.css
│ │ │ │ ├── index.html
│ │ │ │ └── js
│ │ │ │ └── script.js
│ │ │ ├── mails.json
│ │ │ ├── ng-grid-data.json
│ │ │ ├── sidebar-menu.json
│ │ │ ├── table-data.json
│ │ │ ├── treedata.json
│ │ │ ├── uigrid-100.json
│ │ │ ├── uigrid-complex.json
│ │ │ ├── upload.php
│ │ │ └── xeditable-groups.json
│ │ ├── documentation
│ │ │ └── readme.md
│ │ ├── img
│ │ │ ├── bg10.jpg
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.jpg
│ │ │ ├── bg3.jpg
│ │ │ ├── bg4.jpg
│ │ │ ├── bg5.jpg
│ │ │ ├── bg6.jpg
│ │ │ ├── bg7.jpg
│ │ │ ├── bg8.jpg
│ │ │ ├── bg9.jpg
│ │ │ ├── dummy.png
│ │ │ ├── lock-bg.jpg
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ ├── mb-sample.jpg
│ │ │ ├── mockup.png
│ │ │ ├── preloader
│ │ │ │ ├── preloader.empty.png
│ │ │ │ └── preloader.full.png
│ │ │ ├── profile-bg.jpg
│ │ │ └── user
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 04.jpg
│ │ │ ├── 05.jpg
│ │ │ ├── 06.jpg
│ │ │ ├── 07.jpg
│ │ │ ├── 08.jpg
│ │ │ ├── 09.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ └── 13.jpg
│ │ ├── themes
│ │ │ ├── theme-a.css
│ │ │ ├── theme-b.css
│ │ │ ├── theme-c.css
│ │ │ ├── theme-d.css
│ │ │ ├── theme-e.css
│ │ │ ├── theme-f.css
│ │ │ ├── theme-g.css
│ │ │ └── theme-h.css
│ │ └── vendor
│ │ ├── ag-grid
│ │ │ └── dist
│ │ │ ├── ag-grid.js
│ │ │ └── styles
│ │ │ ├── ag-grid.css
│ │ │ ├── theme-dark.css
│ │ │ └── theme-fresh.css
│ │ ├── angular-bootstrap-colorpicker
│ │ │ ├── css
│ │ │ │ └── colorpicker.css
│ │ │ ├── img
│ │ │ │ ├── alpha.png
│ │ │ │ ├── hue.png
│ │ │ │ └── saturation.png
│ │ │ └── js
│ │ │ └── bootstrap-colorpicker-module.js
│ │ ├── angular-bootstrap-nav-tree
│ │ │ └── dist
│ │ │ ├── abn_tree.css
│ │ │ └── abn_tree_directive.js
│ │ ├── angular-bootstrap-slider
│ │ │ └── slider.js
│ │ ├── angular-bootstrap-tour
│ │ │ └── dist
│ │ │ └── angular-bootstrap-tour.js
│ │ ├── angular-carousel
│ │ │ └── dist
│ │ │ ├── angular-carousel.css
│ │ │ └── angular-carousel.js
│ │ ├── angular-chartist.js
│ │ │ └── dist
│ │ │ └── angular-chartist.js
│ │ ├── angular-chart.js
│ │ │ └── dist
│ │ │ └── angular-chart.js
│ │ ├── angular-chosen-localytics
│ │ │ └── dist
│ │ │ └── angular-chosen.js
│ │ ├── angular-datatables
│ │ │ └── dist
│ │ │ ├── angular-datatables.js
│ │ │ ├── angular-datatables.min.js
│ │ │ ├── css
│ │ │ │ ├── angular-datatables.css
│ │ │ │ └── angular-datatables.min.css
│ │ │ └── plugins
│ │ │ ├── bootstrap
│ │ │ │ ├── angular-datatables.bootstrap.js
│ │ │ │ ├── angular-datatables.bootstrap.min.js
│ │ │ │ └── datatables.bootstrap.min.css
│ │ │ ├── buttons
│ │ │ │ ├── angular-datatables.buttons.js
│ │ │ │ └── angular-datatables.buttons.min.js
│ │ │ ├── colreorder
│ │ │ │ ├── angular-datatables.colreorder.js
│ │ │ │ └── angular-datatables.colreorder.min.js
│ │ │ ├── columnfilter
│ │ │ │ ├── angular-datatables.columnfilter.js
│ │ │ │ └── angular-datatables.columnfilter.min.js
│ │ │ ├── colvis
│ │ │ │ ├── angular-datatables.colvis.js
│ │ │ │ └── angular-datatables.colvis.min.js
│ │ │ ├── fixedcolumns
│ │ │ │ ├── angular-datatables.fixedcolumns.js
│ │ │ │ └── angular-datatables.fixedcolumns.min.js
│ │ │ ├── fixedheader
│ │ │ │ ├── angular-datatables.fixedheader.js
│ │ │ │ └── angular-datatables.fixedheader.min.js
│ │ │ ├── light-columnfilter
│ │ │ │ ├── angular-datatables.light-columnfilter.js
│ │ │ │ └── angular-datatables.light-columnfilter.min.js
│ │ │ ├── scroller
│ │ │ │ ├── angular-datatables.scroller.js
│ │ │ │ └── angular-datatables.scroller.min.js
│ │ │ ├── select
│ │ │ │ ├── angular-datatables.select.js
│ │ │ │ └── angular-datatables.select.min.js
│ │ │ └── tabletools
│ │ │ ├── angular-datatables.tabletools.js
│ │ │ └── angular-datatables.tabletools.min.js
│ │ ├── angular-deckgrid
│ │ │ └── angular-deckgrid.js
│ │ ├── angular-file-upload
│ │ │ └── dist
│ │ │ └── angular-file-upload.js
│ │ ├── angular-i18n
│ │ │ ├── angular-locale_ar.js
│ │ │ ├── angular-locale_de.js
│ │ │ ├── angular-locale_en.js
│ │ │ ├── angular-locale_es.js
│ │ │ ├── angular-locale_fr.js
│ │ │ ├── angular-locale_ja.js
│ │ │ ├── angular-locale_ko.js
│ │ │ └── angular-locale_zh.js
│ │ ├── angular-jqcloud
│ │ │ └── angular-jqcloud.js
│ │ ├── angularjs-toaster
│ │ │ ├── toaster.css
│ │ │ └── toaster.js
│ │ ├── angular-knob
│ │ │ └── src
│ │ │ └── angular-knob.js
│ │ ├── angular-rickshaw
│ │ │ └── rickshaw.js
│ │ ├── angular-summernote
│ │ │ └── dist
│ │ │ └── angular-summernote.js
│ │ ├── angular-sweetalert
│ │ │ └── SweetAlert.js
│ │ ├── angular-ui-calendar
│ │ │ └── src
│ │ │ └── calendar.js
│ │ ├── angular-ui-codemirror
│ │ │ └── ui-codemirror.js
│ │ ├── angular-ui-grid
│ │ │ ├── bower.json
│ │ │ ├── CHANGELOG.md
│ │ │ ├── fontello.eot
│ │ │ ├── fontello.svg
│ │ │ ├── fontello.ttf
│ │ │ ├── fontello.woff
│ │ │ ├── index.js
│ │ │ ├── package.json
│ │ │ ├── README.md
│ │ │ ├── ui-grid.css
│ │ │ ├── ui-grid.eot
│ │ │ ├── ui-grid.js
│ │ │ ├── ui-grid.min.css
│ │ │ ├── ui-grid.min.js
│ │ │ ├── ui-grid.svg
│ │ │ ├── ui-grid.ttf
│ │ │ └── ui-grid.woff
│ │ ├── angular-ui-map
│ │ │ └── ui-map.js
│ │ ├── angular-ui-select
│ │ │ └── dist
│ │ │ ├── select.css
│ │ │ └── select.js
│ │ ├── angular-ui-sortable
│ │ │ └── sortable.js
│ │ ├── angular-xeditable
│ │ │ └── dist
│ │ │ ├── css
│ │ │ │ └── xeditable.css
│ │ │ └── js
│ │ │ └── xeditable.js
│ │ ├── animate.css
│ │ │ └── animate.min.css
│ │ ├── animo.js
│ │ │ └── animo.js
│ │ ├── bootstrap
│ │ │ └── js
│ │ │ ├── affix.js
│ │ │ ├── alert.js
│ │ │ ├── button.js
│ │ │ ├── carousel.js
│ │ │ ├── collapse.js
│ │ │ ├── dropdown.js
│ │ │ ├── modal.js
│ │ │ ├── popover.js
│ │ │ ├── scrollspy.js
│ │ │ ├── tab.js
│ │ │ ├── tooltip.js
│ │ │ └── transition.js
│ │ ├── bootstrap-filestyle
│ │ │ └── src
│ │ │ └── bootstrap-filestyle.js
│ │ ├── bootstrap-tagsinput
│ │ │ └── dist
│ │ │ ├── bootstrap-tagsinput.css
│ │ │ └── bootstrap-tagsinput.min.js
│ │ ├── bootstrap-tour
│ │ │ └── build
│ │ │ ├── css
│ │ │ │ └── bootstrap-tour.css
│ │ │ └── js
│ │ │ └── bootstrap-tour-standalone.js
│ │ ├── bootstrap-wysiwyg
│ │ │ ├── bootstrap-wysiwyg.js
│ │ │ └── external
│ │ │ └── jquery.hotkeys.js
│ │ ├── chartist
│ │ │ └── dist
│ │ │ ├── chartist.js
│ │ │ └── chartist.min.css
│ │ ├── chart.js
│ │ │ └── dist
│ │ │ └── chart.js
│ │ ├── chosen_v1.2.0
│ │ │ ├── chosen.jquery.min.js
│ │ │ ├── chosen.min.css
│ │ │ ├── chosen-sprite@2x.png
│ │ │ └── chosen-sprite.png
│ │ ├── codemirror
│ │ │ ├── addon
│ │ │ │ └── mode
│ │ │ │ └── overlay.js
│ │ │ ├── lib
│ │ │ │ ├── codemirror.css
│ │ │ │ └── codemirror.js
│ │ │ ├── mode
│ │ │ │ ├── apl
│ │ │ │ │ └── apl.js
│ │ │ │ ├── asciiarmor
│ │ │ │ │ └── asciiarmor.js
│ │ │ │ ├── asn.1
│ │ │ │ │ └── asn.1.js
│ │ │ │ ├── asterisk
│ │ │ │ │ └── asterisk.js
│ │ │ │ ├── brainfuck
│ │ │ │ │ └── brainfuck.js
│ │ │ │ ├── clike
│ │ │ │ │ └── clike.js
│ │ │ │ ├── clojure
│ │ │ │ │ └── clojure.js
│ │ │ │ ├── cmake
│ │ │ │ │ └── cmake.js
│ │ │ │ ├── cobol
│ │ │ │ │ └── cobol.js
│ │ │ │ ├── coffeescript
│ │ │ │ │ └── coffeescript.js
│ │ │ │ ├── commonlisp
│ │ │ │ │ └── commonlisp.js
│ │ │ │ ├── crystal
│ │ │ │ │ └── crystal.js
│ │ │ │ ├── css
│ │ │ │ │ └── css.js
│ │ │ │ ├── cypher
│ │ │ │ │ └── cypher.js
│ │ │ │ ├── d
│ │ │ │ │ └── d.js
│ │ │ │ ├── dart
│ │ │ │ │ └── dart.js
│ │ │ │ ├── diff
│ │ │ │ │ └── diff.js
│ │ │ │ ├── django
│ │ │ │ │ └── django.js
│ │ │ │ ├── dockerfile
│ │ │ │ │ └── dockerfile.js
│ │ │ │ ├── dtd
│ │ │ │ │ └── dtd.js
│ │ │ │ ├── dylan
│ │ │ │ │ └── dylan.js
│ │ │ │ ├── ebnf
│ │ │ │ │ └── ebnf.js
│ │ │ │ ├── ecl
│ │ │ │ │ └── ecl.js
│ │ │ │ ├── eiffel
│ │ │ │ │ └── eiffel.js
│ │ │ │ ├── elm
│ │ │ │ │ └── elm.js
│ │ │ │ ├── erlang
│ │ │ │ │ └── erlang.js
│ │ │ │ ├── factor
│ │ │ │ │ └── factor.js
│ │ │ │ ├── fcl
│ │ │ │ │ └── fcl.js
│ │ │ │ ├── forth
│ │ │ │ │ └── forth.js
│ │ │ │ ├── fortran
│ │ │ │ │ └── fortran.js
│ │ │ │ ├── gas
│ │ │ │ │ └── gas.js
│ │ │ │ ├── gfm
│ │ │ │ │ └── gfm.js
│ │ │ │ ├── gherkin
│ │ │ │ │ └── gherkin.js
│ │ │ │ ├── go
│ │ │ │ │ └── go.js
│ │ │ │ ├── groovy
│ │ │ │ │ └── groovy.js
│ │ │ │ ├── haml
│ │ │ │ │ └── haml.js
│ │ │ │ ├── handlebars
│ │ │ │ │ └── handlebars.js
│ │ │ │ ├── haskell
│ │ │ │ │ └── haskell.js
│ │ │ │ ├── haskell-literate
│ │ │ │ │ └── haskell-literate.js
│ │ │ │ ├── haxe
│ │ │ │ │ └── haxe.js
│ │ │ │ ├── htmlembedded
│ │ │ │ │ └── htmlembedded.js
│ │ │ │ ├── htmlmixed
│ │ │ │ │ └── htmlmixed.js
│ │ │ │ ├── http
│ │ │ │ │ └── http.js
│ │ │ │ ├── idl
│ │ │ │ │ └── idl.js
│ │ │ │ ├── javascript
│ │ │ │ │ └── javascript.js
│ │ │ │ ├── jinja2
│ │ │ │ │ └── jinja2.js
│ │ │ │ ├── jsx
│ │ │ │ │ └── jsx.js
│ │ │ │ ├── julia
│ │ │ │ │ └── julia.js
│ │ │ │ ├── livescript
│ │ │ │ │ └── livescript.js
│ │ │ │ ├── lua
│ │ │ │ │ └── lua.js
│ │ │ │ ├── markdown
│ │ │ │ │ └── markdown.js
│ │ │ │ ├── mathematica
│ │ │ │ │ └── mathematica.js
│ │ │ │ ├── mbox
│ │ │ │ │ └── mbox.js
│ │ │ │ ├── meta.js
│ │ │ │ ├── mirc
│ │ │ │ │ └── mirc.js
│ │ │ │ ├── mllike
│ │ │ │ │ └── mllike.js
│ │ │ │ ├── modelica
│ │ │ │ │ └── modelica.js
│ │ │ │ ├── mscgen
│ │ │ │ │ └── mscgen.js
│ │ │ │ ├── mumps
│ │ │ │ │ └── mumps.js
│ │ │ │ ├── nginx
│ │ │ │ │ └── nginx.js
│ │ │ │ ├── nsis
│ │ │ │ │ └── nsis.js
│ │ │ │ ├── ntriples
│ │ │ │ │ └── ntriples.js
│ │ │ │ ├── octave
│ │ │ │ │ └── octave.js
│ │ │ │ ├── oz
│ │ │ │ │ └── oz.js
│ │ │ │ ├── pascal
│ │ │ │ │ └── pascal.js
│ │ │ │ ├── pegjs
│ │ │ │ │ └── pegjs.js
│ │ │ │ ├── perl
│ │ │ │ │ └── perl.js
│ │ │ │ ├── php
│ │ │ │ │ └── php.js
│ │ │ │ ├── pig
│ │ │ │ │ └── pig.js
│ │ │ │ ├── powershell
│ │ │ │ │ └── powershell.js
│ │ │ │ ├── properties
│ │ │ │ │ └── properties.js
│ │ │ │ ├── protobuf
│ │ │ │ │ └── protobuf.js
│ │ │ │ ├── pug
│ │ │ │ │ └── pug.js
│ │ │ │ ├── puppet
│ │ │ │ │ └── puppet.js
│ │ │ │ ├── python
│ │ │ │ │ └── python.js
│ │ │ │ ├── q
│ │ │ │ │ └── q.js
│ │ │ │ ├── r
│ │ │ │ │ └── r.js
│ │ │ │ ├── rpm
│ │ │ │ │ └── rpm.js
│ │ │ │ ├── rst
│ │ │ │ │ └── rst.js
│ │ │ │ ├── ruby
│ │ │ │ │ └── ruby.js
│ │ │ │ ├── rust
│ │ │ │ │ └── rust.js
│ │ │ │ ├── sas
│ │ │ │ │ └── sas.js
│ │ │ │ ├── sass
│ │ │ │ │ └── sass.js
│ │ │ │ ├── scheme
│ │ │ │ │ └── scheme.js
│ │ │ │ ├── shell
│ │ │ │ │ └── shell.js
│ │ │ │ ├── sieve
│ │ │ │ │ └── sieve.js
│ │ │ │ ├── slim
│ │ │ │ │ └── slim.js
│ │ │ │ ├── smalltalk
│ │ │ │ │ └── smalltalk.js
│ │ │ │ ├── smarty
│ │ │ │ │ └── smarty.js
│ │ │ │ ├── solr
│ │ │ │ │ └── solr.js
│ │ │ │ ├── soy
│ │ │ │ │ └── soy.js
│ │ │ │ ├── sparql
│ │ │ │ │ └── sparql.js
│ │ │ │ ├── spreadsheet
│ │ │ │ │ └── spreadsheet.js
│ │ │ │ ├── sql
│ │ │ │ │ └── sql.js
│ │ │ │ ├── stex
│ │ │ │ │ └── stex.js
│ │ │ │ ├── stylus
│ │ │ │ │ └── stylus.js
│ │ │ │ ├── swift
│ │ │ │ │ └── swift.js
│ │ │ │ ├── tcl
│ │ │ │ │ └── tcl.js
│ │ │ │ ├── textile
│ │ │ │ │ └── textile.js
│ │ │ │ ├── tiddlywiki
│ │ │ │ │ ├── tiddlywiki.css
│ │ │ │ │ └── tiddlywiki.js
│ │ │ │ ├── tiki
│ │ │ │ │ ├── tiki.css
│ │ │ │ │ └── tiki.js
│ │ │ │ ├── toml
│ │ │ │ │ └── toml.js
│ │ │ │ ├── tornado
│ │ │ │ │ └── tornado.js
│ │ │ │ ├── troff
│ │ │ │ │ └── troff.js
│ │ │ │ ├── ttcn
│ │ │ │ │ └── ttcn.js
│ │ │ │ ├── ttcn-cfg
│ │ │ │ │ └── ttcn-cfg.js
│ │ │ │ ├── turtle
│ │ │ │ │ └── turtle.js
│ │ │ │ ├── twig
│ │ │ │ │ └── twig.js
│ │ │ │ ├── vb
│ │ │ │ │ └── vb.js
│ │ │ │ ├── vbscript
│ │ │ │ │ └── vbscript.js
│ │ │ │ ├── velocity
│ │ │ │ │ └── velocity.js
│ │ │ │ ├── verilog
│ │ │ │ │ └── verilog.js
│ │ │ │ ├── vhdl
│ │ │ │ │ └── vhdl.js
│ │ │ │ ├── vue
│ │ │ │ │ └── vue.js
│ │ │ │ ├── webidl
│ │ │ │ │ └── webidl.js
│ │ │ │ ├── xml
│ │ │ │ │ └── xml.js
│ │ │ │ ├── xquery
│ │ │ │ │ └── xquery.js
│ │ │ │ ├── yacas
│ │ │ │ │ └── yacas.js
│ │ │ │ ├── yaml
│ │ │ │ │ └── yaml.js
│ │ │ │ ├── yaml-frontmatter
│ │ │ │ │ └── yaml-frontmatter.js
│ │ │ │ └── z80
│ │ │ │ └── z80.js
│ │ │ └── theme
│ │ │ ├── 3024-day.css
│ │ │ ├── 3024-night.css
│ │ │ ├── abcdef.css
│ │ │ ├── ambiance.css
│ │ │ ├── ambiance-mobile.css
│ │ │ ├── base16-dark.css
│ │ │ ├── base16-light.css
│ │ │ ├── bespin.css
│ │ │ ├── blackboard.css
│ │ │ ├── cobalt.css
│ │ │ ├── colorforth.css
│ │ │ ├── dracula.css
│ │ │ ├── duotone-dark.css
│ │ │ ├── duotone-light.css
│ │ │ ├── eclipse.css
│ │ │ ├── elegant.css
│ │ │ ├── erlang-dark.css
│ │ │ ├── hopscotch.css
│ │ │ ├── icecoder.css
│ │ │ ├── isotope.css
│ │ │ ├── lesser-dark.css
│ │ │ ├── liquibyte.css
│ │ │ ├── material.css
│ │ │ ├── mbo.css
│ │ │ ├── mdn-like.css
│ │ │ ├── midnight.css
│ │ │ ├── monokai.css
│ │ │ ├── neat.css
│ │ │ ├── neo.css
│ │ │ ├── night.css
│ │ │ ├── panda-syntax.css
│ │ │ ├── paraiso-dark.css
│ │ │ ├── paraiso-light.css
│ │ │ ├── pastel-on-dark.css
│ │ │ ├── railscasts.css
│ │ │ ├── rubyblue.css
│ │ │ ├── seti.css
│ │ │ ├── solarized.css
│ │ │ ├── the-matrix.css
│ │ │ ├── tomorrow-night-bright.css
│ │ │ ├── tomorrow-night-eighties.css
│ │ │ ├── ttcn.css
│ │ │ ├── twilight.css
│ │ │ ├── vibrant-ink.css
│ │ │ ├── xq-dark.css
│ │ │ ├── xq-light.css
│ │ │ ├── yeti.css
│ │ │ └── zenburn.css
│ │ ├── d3
│ │ │ └── d3.min.js
│ │ ├── datatables
│ │ │ └── media
│ │ │ ├── css
│ │ │ │ └── jquery.dataTables.css
│ │ │ ├── images
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── sort_asc_disabled.png
│ │ │ │ ├── sort_asc.png
│ │ │ │ ├── sort_both.png
│ │ │ │ ├── sort_desc_disabled.png
│ │ │ │ ├── sort_desc.png
│ │ │ │ └── Sorting icons.psd
│ │ │ └── js
│ │ │ └── jquery.dataTables.js
│ │ ├── datatables-buttons
│ │ │ ├── css
│ │ │ │ ├── buttons.bootstrap4.scss
│ │ │ │ ├── buttons.bootstrap.scss
│ │ │ │ ├── buttons.dataTables.scss
│ │ │ │ ├── buttons.foundation.scss
│ │ │ │ ├── buttons.jqueryui.scss
│ │ │ │ ├── buttons.semanticui.scss
│ │ │ │ ├── common.scss
│ │ │ │ └── mixins.scss
│ │ │ └── js
│ │ │ ├── buttons.bootstrap4.js
│ │ │ ├── buttons.bootstrap.js
│ │ │ ├── buttons.colVis.js
│ │ │ ├── buttons.flash.js
│ │ │ ├── buttons.foundation.js
│ │ │ ├── buttons.html5.js
│ │ │ ├── buttons.jqueryui.js
│ │ │ ├── buttons.print.js
│ │ │ ├── buttons.semanticui.js
│ │ │ └── dataTables.buttons.js
│ │ ├── fastclick
│ │ │ └── lib
│ │ │ └── fastclick.js
│ │ ├── flatdoc
│ │ │ └── flatdoc.js
│ │ ├── flot
│ │ │ ├── jquery.flot.categories.js
│ │ │ ├── jquery.flot.js
│ │ │ ├── jquery.flot.pie.js
│ │ │ ├── jquery.flot.resize.js
│ │ │ └── jquery.flot.time.js
│ │ ├── flot-spline
│ │ │ └── js
│ │ │ └── jquery.flot.spline.min.js
│ │ ├── flot.tooltip
│ │ │ └── js
│ │ │ └── jquery.flot.tooltip.min.js
│ │ ├── fontawesome
│ │ │ ├── css
│ │ │ │ └── font-awesome.min.css
│ │ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ ├── fullcalendar
│ │ │ └── dist
│ │ │ ├── fullcalendar.css
│ │ │ ├── fullcalendar.min.js
│ │ │ └── gcal.js
│ │ ├── ika.jvectormap
│ │ │ ├── jquery-jvectormap-1.2.2.css
│ │ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ │ ├── jquery-jvectormap-us-mill-en.js
│ │ │ └── jquery-jvectormap-world-mill-en.js
│ │ ├── jqcloud2
│ │ │ └── dist
│ │ │ ├── jqcloud.css
│ │ │ └── jqcloud.js
│ │ ├── jquery.easy-pie-chart
│ │ │ └── dist
│ │ │ └── angular.easypiechart.min.js
│ │ ├── jquery.inputmask
│ │ │ └── dist
│ │ │ └── jquery.inputmask.bundle.js
│ │ ├── jquery-knob
│ │ │ └── dist
│ │ │ └── jquery.knob.min.js
│ │ ├── jquery-ui
│ │ │ ├── jquery-ui.min.js
│ │ │ └── ui
│ │ │ ├── core.js
│ │ │ ├── data.js
│ │ │ ├── disable-selection.js
│ │ │ ├── effect.js
│ │ │ ├── escape-selector.js
│ │ │ ├── focusable.js
│ │ │ ├── form.js
│ │ │ ├── form-reset-mixin.js
│ │ │ ├── ie.js
│ │ │ ├── jquery-1-7.js
│ │ │ ├── keycode.js
│ │ │ ├── labels.js
│ │ │ ├── plugin.js
│ │ │ ├── position.js
│ │ │ ├── safe-active-element.js
│ │ │ ├── safe-blur.js
│ │ │ ├── scroll-parent.js
│ │ │ ├── tabbable.js
│ │ │ ├── unique-id.js
│ │ │ ├── version.js
│ │ │ └── widget.js
│ │ ├── jqueryui-touch-punch
│ │ │ └── jquery.ui.touch-punch.min.js
│ │ ├── loaders.css
│ │ │ └── loaders.css
│ │ ├── load-google-maps
│ │ │ └── load-google-maps.js
│ │ ├── marked
│ │ │ └── lib
│ │ │ └── marked.js
│ │ ├── modernizr
│ │ │ └── modernizr.custom.js
│ │ ├── moment
│ │ │ └── min
│ │ │ └── moment-with-locales.min.js
│ │ ├── morris.js
│ │ │ ├── morris.css
│ │ │ └── morris.js
│ │ ├── nestable
│ │ │ └── jquery.nestable.js
│ │ ├── ngDialog
│ │ │ ├── css
│ │ │ │ ├── ngDialog.min.css
│ │ │ │ └── ngDialog-theme-default.min.css
│ │ │ └── js
│ │ │ └── ngDialog.min.js
│ │ ├── ng-img-crop
│ │ │ └── compile
│ │ │ └── unminified
│ │ │ ├── ng-img-crop.css
│ │ │ └── ng-img-crop.js
│ │ ├── ngInfiniteScroll
│ │ │ └── build
│ │ │ └── ng-infinite-scroll.js
│ │ ├── ng-nestable
│ │ │ └── src
│ │ │ └── angular-nestable.js
│ │ ├── ng-table
│ │ │ └── dist
│ │ │ ├── ng-table.min.css
│ │ │ └── ng-table.min.js
│ │ ├── ng-table-export
│ │ │ └── ng-table-export.js
│ │ ├── ngWig
│ │ │ └── dist
│ │ │ └── ng-wig.min.js
│ │ ├── raphael
│ │ │ └── raphael.js
│ │ ├── rickshaw
│ │ │ ├── rickshaw.js
│ │ │ └── rickshaw.min.css
│ │ ├── screenfull
│ │ │ └── dist
│ │ │ └── screenfull.js
│ │ ├── seiyria-bootstrap-slider
│ │ │ └── dist
│ │ │ ├── bootstrap-slider.min.js
│ │ │ └── css
│ │ │ └── bootstrap-slider.min.css
│ │ ├── simple-line-icons
│ │ │ ├── css
│ │ │ │ └── simple-line-icons.css
│ │ │ └── fonts
│ │ │ ├── Simple-Line-Icons.eot
│ │ │ ├── Simple-Line-Icons.svg
│ │ │ ├── Simple-Line-Icons.ttf
│ │ │ ├── Simple-Line-Icons.woff
│ │ │ └── Simple-Line-Icons.woff2
│ │ ├── skycons
│ │ │ └── skycons.js
│ │ ├── slimScroll
│ │ │ └── jquery.slimscroll.min.js
│ │ ├── sparkline
│ │ │ └── index.js
│ │ ├── spinkit
│ │ │ └── css
│ │ │ └── spinkit.css
│ │ ├── summernote
│ │ │ └── dist
│ │ │ ├── font
│ │ │ │ ├── summernote.eot
│ │ │ │ ├── summernote.ttf
│ │ │ │ └── summernote.woff
│ │ │ ├── lang
│ │ │ │ ├── summernote-ar-AR.js
│ │ │ │ ├── summernote-ar-AR.min.js
│ │ │ │ ├── summernote-bg-BG.js
│ │ │ │ ├── summernote-bg-BG.min.js
│ │ │ │ ├── summernote-ca-ES.js
│ │ │ │ ├── summernote-ca-ES.min.js
│ │ │ │ ├── summernote-cs-CZ.js
│ │ │ │ ├── summernote-cs-CZ.min.js
│ │ │ │ ├── summernote-da-DK.js
│ │ │ │ ├── summernote-da-DK.min.js
│ │ │ │ ├── summernote-de-DE.js
│ │ │ │ ├── summernote-de-DE.min.js
│ │ │ │ ├── summernote-el-GR.js
│ │ │ │ ├── summernote-el-GR.min.js
│ │ │ │ ├── summernote-es-ES.js
│ │ │ │ ├── summernote-es-ES.min.js
│ │ │ │ ├── summernote-es-EU.js
│ │ │ │ ├── summernote-es-EU.min.js
│ │ │ │ ├── summernote-fa-IR.js
│ │ │ │ ├── summernote-fa-IR.min.js
│ │ │ │ ├── summernote-fi-FI.js
│ │ │ │ ├── summernote-fi-FI.min.js
│ │ │ │ ├── summernote-fr-FR.js
│ │ │ │ ├── summernote-fr-FR.min.js
│ │ │ │ ├── summernote-gl-ES.js
│ │ │ │ ├── summernote-gl-ES.min.js
│ │ │ │ ├── summernote-he-IL.js
│ │ │ │ ├── summernote-he-IL.min.js
│ │ │ │ ├── summernote-hr-HR.js
│ │ │ │ ├── summernote-hr-HR.min.js
│ │ │ │ ├── summernote-hu-HU.js
│ │ │ │ ├── summernote-hu-HU.min.js
│ │ │ │ ├── summernote-id-ID.js
│ │ │ │ ├── summernote-id-ID.min.js
│ │ │ │ ├── summernote-it-IT.js
│ │ │ │ ├── summernote-it-IT.min.js
│ │ │ │ ├── summernote-ja-JP.js
│ │ │ │ ├── summernote-ja-JP.min.js
│ │ │ │ ├── summernote-ko-KR.js
│ │ │ │ ├── summernote-ko-KR.min.js
│ │ │ │ ├── summernote-lt-LT.js
│ │ │ │ ├── summernote-lt-LT.min.js
│ │ │ │ ├── summernote-lt-LV.js
│ │ │ │ ├── summernote-lt-LV.min.js
│ │ │ │ ├── summernote-mn-MN
│ │ │ │ ├── summernote-nb-NO.js
│ │ │ │ ├── summernote-nb-NO.min.js
│ │ │ │ ├── summernote-nl-NL.js
│ │ │ │ ├── summernote-nl-NL.min.js
│ │ │ │ ├── summernote-pl-PL.js
│ │ │ │ ├── summernote-pl-PL.min.js
│ │ │ │ ├── summernote-pt-BR.js
│ │ │ │ ├── summernote-pt-BR.min.js
│ │ │ │ ├── summernote-pt-PT.js
│ │ │ │ ├── summernote-pt-PT.min.js
│ │ │ │ ├── summernote-ro-RO.js
│ │ │ │ ├── summernote-ro-RO.min.js
│ │ │ │ ├── summernote-ru-RU.js
│ │ │ │ ├── summernote-ru-RU.min.js
│ │ │ │ ├── summernote-sk-SK.js
│ │ │ │ ├── summernote-sk-SK.min.js
│ │ │ │ ├── summernote-sl-SI.js
│ │ │ │ ├── summernote-sl-SI.min.js
│ │ │ │ ├── summernote-sr-RS.js
│ │ │ │ ├── summernote-sr-RS-Latin.js
│ │ │ │ ├── summernote-sr-RS-Latin.min.js
│ │ │ │ ├── summernote-sr-RS.min.js
│ │ │ │ ├── summernote-sv-SE.js
│ │ │ │ ├── summernote-sv-SE.min.js
│ │ │ │ ├── summernote-ta-IN.js
│ │ │ │ ├── summernote-ta-IN.min.js
│ │ │ │ ├── summernote-th-TH.js
│ │ │ │ ├── summernote-th-TH.min.js
│ │ │ │ ├── summernote-tr-TR.js
│ │ │ │ ├── summernote-tr-TR.min.js
│ │ │ │ ├── summernote-uk-UA.js
│ │ │ │ ├── summernote-uk-UA.min.js
│ │ │ │ ├── summernote-vi-VN.js
│ │ │ │ ├── summernote-vi-VN.min.js
│ │ │ │ ├── summernote-zh-CN.js
│ │ │ │ ├── summernote-zh-CN.min.js
│ │ │ │ ├── summernote-zh-TW.js
│ │ │ │ └── summernote-zh-TW.min.js
│ │ │ ├── plugin
│ │ │ │ ├── databasic
│ │ │ │ │ ├── summernote-ext-databasic.css
│ │ │ │ │ ├── summernote-ext-databasic.js
│ │ │ │ │ ├── summernote-ext-databasic.min.css
│ │ │ │ │ └── summernote-ext-databasic.min.js
│ │ │ │ ├── hello
│ │ │ │ │ ├── summernote-ext-hello.js
│ │ │ │ │ └── summernote-ext-hello.min.js
│ │ │ │ └── specialchars
│ │ │ │ ├── summernote-ext-specialchars.js
│ │ │ │ └── summernote-ext-specialchars.min.js
│ │ │ ├── summernote.css
│ │ │ ├── summernote.js
│ │ │ └── summernote.min.js
│ │ ├── sweetalert
│ │ │ └── dist
│ │ │ ├── sweetalert.css
│ │ │ └── sweetalert.min.js
│ │ ├── weather-icons
│ │ │ ├── css
│ │ │ │ ├── weather-icons.min.css
│ │ │ │ └── weather-icons-wind.min.css
│ │ │ └── font
│ │ │ ├── weathericons-regular-webfont.eot
│ │ │ ├── weathericons-regular-webfont.svg
│ │ │ ├── weathericons-regular-webfont.ttf
│ │ │ ├── weathericons-regular-webfont.woff
│ │ │ └── weathericons-regular-webfont.woff2
│ │ └── whirl
│ │ └── dist
│ │ └── whirl.css
│ └── server
│ ├── sidebar.js
│ └── translate.js
├── backend-meteor-angular-seed
│ ├── client
│ │ ├── index.html
│ │ ├── main.js
│ │ └── views
│ │ ├── app.html
│ │ ├── partials
│ │ │ ├── footer.html
│ │ │ ├── offsidebar.html
│ │ │ ├── offsidebar-tab1.html
│ │ │ ├── offsidebar-tab2.html
│ │ │ ├── sidebar.html
│ │ │ └── top-navbar.html
│ │ ├── singleview.html
│ │ └── submenu.html
│ ├── imports
│ │ ├── scripts
│ │ │ ├── app.js
│ │ │ ├── custom
│ │ │ │ ├── custom.controller.js
│ │ │ │ ├── custom.module.js
│ │ │ │ └── README.txt
│ │ │ └── modules
│ │ │ ├── app.module.js
│ │ │ ├── colors
│ │ │ │ ├── colors.contant.js
│ │ │ │ ├── colors.module.js
│ │ │ │ └── colors.service.js
│ │ │ ├── core
│ │ │ │ ├── core.config.js
│ │ │ │ ├── core.constants.js
│ │ │ │ ├── core.module.js
│ │ │ │ └── core.run.js
│ │ │ ├── lazyload
│ │ │ │ ├── lazyload.config.js
│ │ │ │ ├── lazyload.constants.js
│ │ │ │ └── lazyload.module.js
│ │ │ ├── loadingbar
│ │ │ │ ├── loadingbar.config.js
│ │ │ │ ├── loadingbar.module.js
│ │ │ │ └── loadingbar.run.js
│ │ │ ├── navsearch
│ │ │ │ ├── navsearch.directive.js
│ │ │ │ ├── navsearch.module.js
│ │ │ │ └── navsearch.service.js
│ │ │ ├── preloader
│ │ │ │ ├── preloader.directive.js
│ │ │ │ └── preloader.module.js
│ │ │ ├── routes
│ │ │ │ ├── route-helpers.provider.js
│ │ │ │ ├── routes.config.js
│ │ │ │ └── routes.module.js
│ │ │ ├── settings
│ │ │ │ ├── settings.module.js
│ │ │ │ └── settings.run.js
│ │ │ ├── sidebar
│ │ │ │ ├── sidebar.controller.js
│ │ │ │ ├── sidebar.directive.js
│ │ │ │ ├── sidebar.module.js
│ │ │ │ ├── sidebar.service.js
│ │ │ │ └── sidebar.userblock.controller.js
│ │ │ ├── translate
│ │ │ │ ├── translate.config.js
│ │ │ │ ├── translate.module.js
│ │ │ │ └── translate.run.js
│ │ │ └── utils
│ │ │ ├── animate-enabled.directive.js
│ │ │ ├── browser.service.js
│ │ │ ├── clear-storage.directive.js
│ │ │ ├── fullscreen.directive.js
│ │ │ ├── load-css.directive.js
│ │ │ ├── now.directive.js
│ │ │ ├── table-checkall.directive.js
│ │ │ ├── trigger-resize.directive.js
│ │ │ ├── utils.module.js
│ │ │ └── utils.service.js
│ │ └── styles
│ │ ├── app
│ │ │ ├── animate.less
│ │ │ ├── bootstrap-reset.less
│ │ │ ├── breadcrumbs.less
│ │ │ ├── font-awesome.less
│ │ │ ├── layout-animation.less
│ │ │ ├── layout-extra.less
│ │ │ ├── layout.less
│ │ │ ├── loading-bar.less
│ │ │ ├── media-queries.less
│ │ │ ├── offsidebar.less
│ │ │ ├── preloader.less
│ │ │ ├── print.less
│ │ │ ├── sidebar.less
│ │ │ ├── top-navbar.less
│ │ │ ├── typo.less
│ │ │ └── utils.less
│ │ ├── app.less
│ │ ├── bootstrap
│ │ │ ├── alerts.less
│ │ │ ├── badges.less
│ │ │ ├── bootstrap.less
│ │ │ ├── breadcrumbs.less
│ │ │ ├── button-groups.less
│ │ │ ├── buttons.less
│ │ │ ├── carousel.less
│ │ │ ├── close.less
│ │ │ ├── code.less
│ │ │ ├── component-animations.less
│ │ │ ├── dropdowns.less
│ │ │ ├── forms.less
│ │ │ ├── glyphicons.less
│ │ │ ├── grid.less
│ │ │ ├── input-groups.less
│ │ │ ├── jumbotron.less
│ │ │ ├── labels.less
│ │ │ ├── list-group.less
│ │ │ ├── media.less
│ │ │ ├── mixins
│ │ │ │ ├── alerts.less
│ │ │ │ ├── background-variant.less
│ │ │ │ ├── border-radius.less
│ │ │ │ ├── buttons.less
│ │ │ │ ├── center-block.less
│ │ │ │ ├── clearfix.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── gradients.less
│ │ │ │ ├── grid-framework.less
│ │ │ │ ├── grid.less
│ │ │ │ ├── hide-text.less
│ │ │ │ ├── image.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── nav-divider.less
│ │ │ │ ├── nav-vertical-align.less
│ │ │ │ ├── opacity.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── progress-bar.less
│ │ │ │ ├── reset-filter.less
│ │ │ │ ├── reset-text.less
│ │ │ │ ├── resize.less
│ │ │ │ ├── responsive-visibility.less
│ │ │ │ ├── size.less
│ │ │ │ ├── tab-focus.less
│ │ │ │ ├── table-row.less
│ │ │ │ ├── text-emphasis.less
│ │ │ │ ├── text-overflow.less
│ │ │ │ └── vendor-prefixes.less
│ │ │ ├── mixins.less
│ │ │ ├── modals.less
│ │ │ ├── navbar.less
│ │ │ ├── navs.less
│ │ │ ├── normalize.less
│ │ │ ├── pager.less
│ │ │ ├── pagination.less
│ │ │ ├── panels.less
│ │ │ ├── popovers.less
│ │ │ ├── print.less
│ │ │ ├── progress-bars.less
│ │ │ ├── responsive-embed.less
│ │ │ ├── responsive-utilities.less
│ │ │ ├── scaffolding.less
│ │ │ ├── tables.less
│ │ │ ├── theme.less
│ │ │ ├── thumbnails.less
│ │ │ ├── tooltip.less
│ │ │ ├── type.less
│ │ │ ├── utilities.less
│ │ │ ├── variables.less
│ │ │ └── wells.less
│ │ ├── bootstrap.less
│ │ └── themes
│ │ ├── theme-a.less
│ │ ├── theme-b.less
│ │ ├── theme-c.less
│ │ ├── theme-d.less
│ │ ├── theme-e.less
│ │ ├── theme-f.less
│ │ ├── theme-g.less
│ │ └── theme-h.less
│ ├── package.json
│ ├── package-lock.json
│ ├── private
│ │ └── i18n
│ │ ├── en.json
│ │ └── es_AR.json
│ ├── public
│ │ ├── img
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ └── preloader
│ │ │ ├── preloader.empty.png
│ │ │ └── preloader.full.png
│ │ └── vendor
│ │ ├── fontawesome
│ │ │ ├── css
│ │ │ │ └── font-awesome.min.css
│ │ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ ├── modernizr
│ │ │ └── modernizr.custom.js
│ │ └── simple-line-icons
│ │ ├── css
│ │ │ └── simple-line-icons.css
│ │ └── fonts
│ │ ├── Simple-Line-Icons.eot
│ │ ├── Simple-Line-Icons.svg
│ │ ├── Simple-Line-Icons.ttf
│ │ ├── Simple-Line-Icons.woff
│ │ └── Simple-Line-Icons.woff2
│ └── server
│ ├── sidebar.js
│ └── translate.js
├── backend-meteor-jquery
│ ├── client
│ │ ├── activeroute.helper.js
│ │ ├── head.html
│ │ └── main.js
│ ├── imports
│ │ ├── scripts
│ │ │ ├── index.js
│ │ │ └── modules
│ │ │ ├── clear-storage.js
│ │ │ ├── constants.js
│ │ │ ├── fullscreen.js
│ │ │ ├── load-css.js
│ │ │ ├── localize.js
│ │ │ ├── maps-google.js
│ │ │ ├── maps-vector.init.js
│ │ │ ├── maps-vector.js
│ │ │ ├── notify.js
│ │ │ ├── panel-tools.js
│ │ │ ├── skycons.js
│ │ │ ├── slimscroll.js
│ │ │ ├── sparkline.js
│ │ │ ├── toggle-state.js
│ │ │ ├── trigger-resize.js
│ │ │ └── utils.js
│ │ ├── startup
│ │ │ └── client
│ │ │ ├── index.js
│ │ │ ├── routes.js
│ │ │ └── vendor.js
│ │ ├── styles
│ │ │ ├── app
│ │ │ │ ├── alerts.scss
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── breadcrumbs.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── calendar.scss
│ │ │ │ ├── chart-easypie.scss
│ │ │ │ ├── chart-flot.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── datatable.scss
│ │ │ │ ├── docs.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── form-elements.scss
│ │ │ │ ├── form-imgcrop.scss
│ │ │ │ ├── form-tags.scss
│ │ │ │ ├── form-validation.scss
│ │ │ │ ├── form-wizard.scss
│ │ │ │ ├── gmap.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── jqgrid.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── mailbox.scss
│ │ │ │ ├── masonry-grid.scss
│ │ │ │ ├── media-queries.scss
│ │ │ │ ├── nestable.scss
│ │ │ │ ├── notify.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── panels.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── plans.scss
│ │ │ │ ├── plugins.scss
│ │ │ │ ├── portlets.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── progress-extra.scss
│ │ │ │ ├── radial-bar.scss
│ │ │ │ ├── row-extra.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── spinner.scss
│ │ │ │ ├── table-extras.scss
│ │ │ │ ├── table-grid.scss
│ │ │ │ ├── timeline.scss
│ │ │ │ ├── todo.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── user-block.scss
│ │ │ │ ├── utils-definitions.scss
│ │ │ │ ├── utils.scss
│ │ │ │ ├── variables.scss
│ │ │ │ ├── vector-map.scss
│ │ │ │ └── widget.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _badges.scss
│ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ ├── _close.scss
│ │ │ │ │ ├── _code.scss
│ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _media.scss
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modals.scss
│ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ ├── _navs.scss
│ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ ├── _pager.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ ├── _print.scss
│ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _tables.scss
│ │ │ │ │ ├── _theme.scss
│ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ ├── _variables.scss
│ │ │ │ │ └── _wells.scss
│ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ ├── _bootstrap.scss
│ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ └── templates
│ │ ├── common
│ │ │ ├── footer.html
│ │ │ ├── layout.horizontal.html
│ │ │ ├── layout.html
│ │ │ ├── layout.js
│ │ │ ├── layout-pages.html
│ │ │ ├── offsidebar.html
│ │ │ ├── sidebar.html
│ │ │ ├── sidebar.js
│ │ │ ├── topnavbar.horizontal.html
│ │ │ ├── topnavbar.html
│ │ │ └── topnavbar.js
│ │ ├── index.js
│ │ └── views
│ │ ├── blog
│ │ │ ├── blog-articles.html
│ │ │ ├── blog-article-view.html
│ │ │ ├── blog-article-view.js
│ │ │ ├── blog-list.html
│ │ │ ├── blog-list.js
│ │ │ ├── blog-post.html
│ │ │ └── blog-post.js
│ │ ├── charts
│ │ │ ├── chartist.html
│ │ │ ├── chartist.js
│ │ │ ├── chartjs.html
│ │ │ ├── chartjs.js
│ │ │ ├── flot.html
│ │ │ ├── flot.js
│ │ │ ├── morris.html
│ │ │ ├── morris.js
│ │ │ ├── radial.html
│ │ │ ├── radial.js
│ │ │ ├── rickshaw.html
│ │ │ └── rickshaw.js
│ │ ├── dashboard
│ │ │ ├── dashboardh.html
│ │ │ ├── dashboardh.js
│ │ │ ├── dashboardv1.html
│ │ │ ├── dashboardv1.js
│ │ │ ├── dashboardv2.html
│ │ │ ├── dashboardv2.js
│ │ │ ├── dashboardv3.html
│ │ │ └── dashboardv3.js
│ │ ├── documentation
│ │ │ ├── documentation.html
│ │ │ └── documentation.js
│ │ ├── ecommerce
│ │ │ ├── ecommerce-checkout.html
│ │ │ ├── ecommerce-orders.html
│ │ │ ├── ecommerce-orders.js
│ │ │ ├── ecommerce-order-view.html
│ │ │ ├── ecommerce-products.html
│ │ │ ├── ecommerce-products.js
│ │ │ └── ecommerce-product-view.html
│ │ ├── elements
│ │ │ ├── animation.html
│ │ │ ├── animation.js
│ │ │ ├── button.html
│ │ │ ├── carousel.html
│ │ │ ├── colors.html
│ │ │ ├── dropdown.html
│ │ │ ├── fonticons.html
│ │ │ ├── grid.html
│ │ │ ├── gridmasonry.html
│ │ │ ├── nestable.html
│ │ │ ├── nestable.js
│ │ │ ├── notification.html
│ │ │ ├── notification.js
│ │ │ ├── panel.html
│ │ │ ├── panel.js
│ │ │ ├── portlet.html
│ │ │ ├── portlet.js
│ │ │ ├── sortable.html
│ │ │ ├── sortable.js
│ │ │ ├── spinner.html
│ │ │ ├── sweetalert.html
│ │ │ ├── sweetalert.js
│ │ │ ├── tour.html
│ │ │ ├── tour.js
│ │ │ ├── typography.html
│ │ │ ├── weathericons.html
│ │ │ └── weathericons.js
│ │ ├── extras
│ │ │ ├── bug-tracker.html
│ │ │ ├── bug-tracker.js
│ │ │ ├── calendar.html
│ │ │ ├── calendar.js
│ │ │ ├── contact-details.html
│ │ │ ├── contacts.html
│ │ │ ├── faq.html
│ │ │ ├── file-manager.html
│ │ │ ├── file-manager.js
│ │ │ ├── followers.html
│ │ │ ├── help-center.html
│ │ │ ├── invoice.html
│ │ │ ├── mailbox.html
│ │ │ ├── plans.html
│ │ │ ├── profile.html
│ │ │ ├── profile.js
│ │ │ ├── project-details.html
│ │ │ ├── project-details.js
│ │ │ ├── projects.html
│ │ │ ├── projects.js
│ │ │ ├── search.html
│ │ │ ├── search.js
│ │ │ ├── settings.html
│ │ │ ├── settings.js
│ │ │ ├── social-board.html
│ │ │ ├── team-viewer.html
│ │ │ ├── team-viewer.js
│ │ │ ├── timeline.html
│ │ │ ├── todo.html
│ │ │ └── vote-links.html
│ │ ├── forms
│ │ │ ├── extended.html
│ │ │ ├── extended.js
│ │ │ ├── imgcrop.html
│ │ │ ├── imgcrop.js
│ │ │ ├── standard.html
│ │ │ ├── upload.html
│ │ │ ├── upload.js
│ │ │ ├── validation.html
│ │ │ ├── validation.js
│ │ │ ├── wizard.html
│ │ │ ├── wizard.js
│ │ │ ├── xeditable.html
│ │ │ └── xeditable.js
│ │ ├── forum
│ │ │ ├── forum-categories.html
│ │ │ ├── forum-discussion.html
│ │ │ └── forum-topics.html
│ │ ├── maps
│ │ │ ├── google.html
│ │ │ ├── google.js
│ │ │ ├── vector.html
│ │ │ └── vector.js
│ │ ├── pages
│ │ │ ├── 500.html
│ │ │ ├── lock.html
│ │ │ ├── login.html
│ │ │ ├── maintenance.html
│ │ │ ├── notfound.html
│ │ │ ├── recover.html
│ │ │ ├── register.html
│ │ │ └── template.html
│ │ ├── tables
│ │ │ ├── datatable.html
│ │ │ ├── datatable.js
│ │ │ ├── extended.html
│ │ │ ├── extended.js
│ │ │ ├── jqgrid.html
│ │ │ ├── jqgrid.js
│ │ │ └── standard.html
│ │ └── widgets
│ │ ├── widgets.html
│ │ └── widgets.js
│ ├── localize
│ │ └── i18n
│ │ ├── en.i18n.json
│ │ └── es.i18n.json
│ ├── modernizr-config.json
│ ├── package.json
│ ├── package-lock.json
│ ├── project-tap.i18n
│ └── public
│ ├── documentation
│ │ └── readme.md
│ ├── font
│ │ ├── weathericons-regular-webfont.eot
│ │ ├── weathericons-regular-webfont.svg
│ │ ├── weathericons-regular-webfont.ttf
│ │ ├── weathericons-regular-webfont.woff
│ │ └── weathericons-regular-webfont.woff2
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ ├── fontawesome-webfont.woff2
│ │ ├── Simple-Line-Icons.eot
│ │ ├── Simple-Line-Icons.svg
│ │ ├── Simple-Line-Icons.ttf
│ │ ├── Simple-Line-Icons.woff
│ │ └── Simple-Line-Icons.woff2
│ ├── images
│ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ ├── ui-icons_222222_256x240.png
│ │ ├── ui-icons_2e83ff_256x240.png
│ │ ├── ui-icons_454545_256x240.png
│ │ ├── ui-icons_888888_256x240.png
│ │ └── ui-icons_cd0a0a_256x240.png
│ ├── img
│ │ ├── bg10.jpg
│ │ ├── bg1.jpg
│ │ ├── bg2.jpg
│ │ ├── bg3.jpg
│ │ ├── bg4.jpg
│ │ ├── bg5.jpg
│ │ ├── bg6.jpg
│ │ ├── bg7.jpg
│ │ ├── bg8.jpg
│ │ ├── bg9.jpg
│ │ ├── bootstrap-colorpicker
│ │ │ ├── alpha-horizontal.png
│ │ │ ├── alpha.png
│ │ │ ├── hue-horizontal.png
│ │ │ ├── hue.png
│ │ │ └── saturation.png
│ │ ├── dummy.png
│ │ ├── lock-bg.jpg
│ │ ├── logo.png
│ │ ├── logo-single.png
│ │ ├── mb-sample.jpg
│ │ ├── mockup.png
│ │ ├── profile-bg.jpg
│ │ └── user
│ │ ├── 01.jpg
│ │ ├── 02.jpg
│ │ ├── 03.jpg
│ │ ├── 04.jpg
│ │ ├── 05.jpg
│ │ ├── 06.jpg
│ │ ├── 07.jpg
│ │ ├── 08.jpg
│ │ ├── 09.jpg
│ │ ├── 10.jpg
│ │ ├── 11.jpg
│ │ ├── 12.jpg
│ │ └── 13.jpg
│ ├── modernizr.js
│ ├── rickshaw
│ │ └── rickshaw.js
│ ├── server
│ │ ├── datatable.json
│ │ ├── jqgrid.json
│ │ ├── jqgrid-tree.json
│ │ ├── xeditable-groups.json
│ │ └── xeditable.res
│ └── themes
│ ├── theme-a.css
│ ├── theme-b.css
│ ├── theme-c.css
│ ├── theme-d.css
│ ├── theme-e.css
│ ├── theme-f.css
│ ├── theme-g.css
│ └── theme-h.css
├── backend-meteor-jquery-seed
│ ├── client
│ │ ├── activeroute.helper.js
│ │ ├── head.html
│ │ └── main.js
│ ├── imports
│ │ ├── scripts
│ │ │ ├── index.js
│ │ │ └── modules
│ │ │ ├── clear-storage.js
│ │ │ ├── constants.js
│ │ │ ├── fullscreen.js
│ │ │ ├── load-css.js
│ │ │ ├── localize.js
│ │ │ ├── maps-google.js
│ │ │ ├── maps-vector.init.js
│ │ │ ├── maps-vector.js
│ │ │ ├── notify.js
│ │ │ ├── panel-tools.js
│ │ │ ├── skycons.js
│ │ │ ├── slimscroll.js
│ │ │ ├── sparkline.js
│ │ │ ├── toggle-state.js
│ │ │ ├── trigger-resize.js
│ │ │ └── utils.js
│ │ ├── startup
│ │ │ └── client
│ │ │ ├── index.js
│ │ │ ├── routes.js
│ │ │ └── vendor.js
│ │ ├── styles
│ │ │ ├── app
│ │ │ │ ├── alerts.scss
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── breadcrumbs.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── calendar.scss
│ │ │ │ ├── chart-easypie.scss
│ │ │ │ ├── chart-flot.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── datatable.scss
│ │ │ │ ├── docs.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── form-elements.scss
│ │ │ │ ├── form-imgcrop.scss
│ │ │ │ ├── form-tags.scss
│ │ │ │ ├── form-validation.scss
│ │ │ │ ├── form-wizard.scss
│ │ │ │ ├── gmap.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── jqgrid.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── mailbox.scss
│ │ │ │ ├── masonry-grid.scss
│ │ │ │ ├── media-queries.scss
│ │ │ │ ├── nestable.scss
│ │ │ │ ├── notify.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── panels.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── plans.scss
│ │ │ │ ├── plugins.scss
│ │ │ │ ├── portlets.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── progress-extra.scss
│ │ │ │ ├── radial-bar.scss
│ │ │ │ ├── row-extra.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── spinner.scss
│ │ │ │ ├── table-extras.scss
│ │ │ │ ├── table-grid.scss
│ │ │ │ ├── timeline.scss
│ │ │ │ ├── todo.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── user-block.scss
│ │ │ │ ├── utils-definitions.scss
│ │ │ │ ├── utils.scss
│ │ │ │ ├── variables.scss
│ │ │ │ ├── vector-map.scss
│ │ │ │ └── widget.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _badges.scss
│ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ ├── _close.scss
│ │ │ │ │ ├── _code.scss
│ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _media.scss
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modals.scss
│ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ ├── _navs.scss
│ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ ├── _pager.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ ├── _print.scss
│ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _tables.scss
│ │ │ │ │ ├── _theme.scss
│ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ ├── _variables.scss
│ │ │ │ │ └── _wells.scss
│ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ ├── _bootstrap.scss
│ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ └── templates
│ │ ├── common
│ │ │ ├── footer.html
│ │ │ ├── layout.horizontal.html
│ │ │ ├── layout.html
│ │ │ ├── layout.js
│ │ │ ├── layout-pages.html
│ │ │ ├── offsidebar.html
│ │ │ ├── sidebar.html
│ │ │ ├── sidebar.js
│ │ │ ├── topnavbar.horizontal.html
│ │ │ ├── topnavbar.html
│ │ │ └── topnavbar.js
│ │ ├── index.js
│ │ └── views
│ │ ├── singleview.html
│ │ ├── singleview.js
│ │ └── submenu.html
│ ├── localize
│ │ └── i18n
│ │ ├── en.i18n.json
│ │ └── es.i18n.json
│ ├── modernizr-config.json
│ ├── package.json
│ ├── package-lock.json
│ ├── project-tap.i18n
│ └── public
│ ├── documentation
│ │ └── readme.md
│ ├── font
│ │ ├── weathericons-regular-webfont.eot
│ │ ├── weathericons-regular-webfont.svg
│ │ ├── weathericons-regular-webfont.ttf
│ │ ├── weathericons-regular-webfont.woff
│ │ └── weathericons-regular-webfont.woff2
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ ├── fontawesome-webfont.woff2
│ │ ├── Simple-Line-Icons.eot
│ │ ├── Simple-Line-Icons.svg
│ │ ├── Simple-Line-Icons.ttf
│ │ ├── Simple-Line-Icons.woff
│ │ └── Simple-Line-Icons.woff2
│ ├── images
│ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ ├── ui-icons_222222_256x240.png
│ │ ├── ui-icons_2e83ff_256x240.png
│ │ ├── ui-icons_454545_256x240.png
│ │ ├── ui-icons_888888_256x240.png
│ │ └── ui-icons_cd0a0a_256x240.png
│ ├── img
│ │ ├── bg10.jpg
│ │ ├── bg1.jpg
│ │ ├── bg2.jpg
│ │ ├── bg3.jpg
│ │ ├── bg4.jpg
│ │ ├── bg5.jpg
│ │ ├── bg6.jpg
│ │ ├── bg7.jpg
│ │ ├── bg8.jpg
│ │ ├── bg9.jpg
│ │ ├── bootstrap-colorpicker
│ │ │ ├── alpha-horizontal.png
│ │ │ ├── alpha.png
│ │ │ ├── hue-horizontal.png
│ │ │ ├── hue.png
│ │ │ └── saturation.png
│ │ ├── dummy.png
│ │ ├── lock-bg.jpg
│ │ ├── logo.png
│ │ ├── logo-single.png
│ │ ├── mb-sample.jpg
│ │ ├── mockup.png
│ │ ├── profile-bg.jpg
│ │ └── user
│ │ ├── 01.jpg
│ │ ├── 02.jpg
│ │ ├── 03.jpg
│ │ ├── 04.jpg
│ │ ├── 05.jpg
│ │ ├── 06.jpg
│ │ ├── 07.jpg
│ │ ├── 08.jpg
│ │ ├── 09.jpg
│ │ ├── 10.jpg
│ │ ├── 11.jpg
│ │ ├── 12.jpg
│ │ └── 13.jpg
│ ├── modernizr.js
│ ├── server
│ │ ├── datatable.json
│ │ ├── jqgrid.json
│ │ ├── jqgrid-tree.json
│ │ ├── xeditable-groups.json
│ │ └── xeditable.res
│ └── themes
│ ├── theme-a.css
│ ├── theme-b.css
│ ├── theme-c.css
│ ├── theme-d.css
│ ├── theme-e.css
│ ├── theme-f.css
│ ├── theme-g.css
│ └── theme-h.css
├── backend-rails
│ └── Angle
│ ├── app
│ │ ├── assets
│ │ │ ├── api
│ │ │ │ ├── datatable.json
│ │ │ │ ├── jqgrid.json
│ │ │ │ ├── jqgrid-tree.json
│ │ │ │ └── xeditable-groups.json
│ │ │ ├── config
│ │ │ │ └── manifest.js
│ │ │ ├── documentation
│ │ │ │ └── readme.md
│ │ │ ├── i18n
│ │ │ │ ├── site-en.json
│ │ │ │ └── site-es.json
│ │ │ ├── images
│ │ │ │ └── angle
│ │ │ │ ├── bg10.jpg
│ │ │ │ ├── bg1.jpg
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── bg3.jpg
│ │ │ │ ├── bg4.jpg
│ │ │ │ ├── bg5.jpg
│ │ │ │ ├── bg6.jpg
│ │ │ │ ├── bg7.jpg
│ │ │ │ ├── bg8.jpg
│ │ │ │ ├── bg9.jpg
│ │ │ │ ├── dummy.png
│ │ │ │ ├── lock-bg.jpg
│ │ │ │ ├── logo.png
│ │ │ │ ├── logo-single.png
│ │ │ │ ├── mb-sample.jpg
│ │ │ │ ├── mockup.png
│ │ │ │ ├── profile-bg.jpg
│ │ │ │ └── user
│ │ │ │ ├── 01.jpg
│ │ │ │ ├── 02.jpg
│ │ │ │ ├── 03.jpg
│ │ │ │ ├── 04.jpg
│ │ │ │ ├── 05.jpg
│ │ │ │ ├── 06.jpg
│ │ │ │ ├── 07.jpg
│ │ │ │ ├── 08.jpg
│ │ │ │ ├── 09.jpg
│ │ │ │ ├── 10.jpg
│ │ │ │ ├── 11.jpg
│ │ │ │ ├── 12.jpg
│ │ │ │ └── 13.jpg
│ │ │ ├── javascripts
│ │ │ │ ├── angle
│ │ │ │ │ ├── app.init.js
│ │ │ │ │ ├── custom
│ │ │ │ │ │ └── custom.js
│ │ │ │ │ └── modules
│ │ │ │ │ ├── bootstrap-start.js
│ │ │ │ │ ├── calendar.js
│ │ │ │ │ ├── chart-easypie.js
│ │ │ │ │ ├── chartist.js
│ │ │ │ │ ├── chart.js
│ │ │ │ │ ├── chart-knob.js
│ │ │ │ │ ├── clear-storage.js
│ │ │ │ │ ├── color-picker.js
│ │ │ │ │ ├── constants.js
│ │ │ │ │ ├── demo
│ │ │ │ │ │ ├── demo-datatable.js
│ │ │ │ │ │ ├── demo-flot.js
│ │ │ │ │ │ ├── demo-forms.js
│ │ │ │ │ │ ├── demo-jqcloud.js
│ │ │ │ │ │ ├── demo-jqgrid.js
│ │ │ │ │ │ ├── demo-nestable.js
│ │ │ │ │ │ ├── demo-panels.js
│ │ │ │ │ │ ├── demo-search.js
│ │ │ │ │ │ ├── demo-sortable.js
│ │ │ │ │ │ ├── demo-upload.js
│ │ │ │ │ │ ├── demo-vector-map.js
│ │ │ │ │ │ ├── demo-wizard.js
│ │ │ │ │ │ └── demo-xeditable.js
│ │ │ │ │ ├── easypiechart.js
│ │ │ │ │ ├── flatdoc.js
│ │ │ │ │ ├── fullscreen.js
│ │ │ │ │ ├── gmap.js
│ │ │ │ │ ├── imagecrop.js
│ │ │ │ │ ├── load-css.js
│ │ │ │ │ ├── localize.js
│ │ │ │ │ ├── maps-vector.js
│ │ │ │ │ ├── morris.js
│ │ │ │ │ ├── navbar-search.js
│ │ │ │ │ ├── notify.js
│ │ │ │ │ ├── now.js
│ │ │ │ │ ├── panel-tools.js
│ │ │ │ │ ├── play-animation.js
│ │ │ │ │ ├── porlets.js
│ │ │ │ │ ├── rickshaw.js
│ │ │ │ │ ├── select2.js
│ │ │ │ │ ├── sidebar.js
│ │ │ │ │ ├── skycons.js
│ │ │ │ │ ├── slimscroll.js
│ │ │ │ │ ├── sparkline.js
│ │ │ │ │ ├── sweetalert.js
│ │ │ │ │ ├── table-checkall.js
│ │ │ │ │ ├── toggle-state.js
│ │ │ │ │ ├── tour.js
│ │ │ │ │ ├── trigger-resize.js
│ │ │ │ │ └── utils.js
│ │ │ │ ├── application.js
│ │ │ │ ├── base.js
│ │ │ │ ├── blog.js
│ │ │ │ ├── charts.js
│ │ │ │ ├── dashboard.js
│ │ │ │ ├── documentation.js
│ │ │ │ ├── ecommerce.js
│ │ │ │ ├── elements.js
│ │ │ │ ├── extras.js
│ │ │ │ ├── forms.js
│ │ │ │ ├── forum.js
│ │ │ │ ├── maps.js
│ │ │ │ ├── multilevel.js
│ │ │ │ ├── pages.js
│ │ │ │ ├── tables.js
│ │ │ │ └── widgets.js
│ │ │ └── stylesheets
│ │ │ ├── angle
│ │ │ │ ├── app
│ │ │ │ │ ├── alerts.scss
│ │ │ │ │ ├── animate.scss
│ │ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ │ ├── breadcrumbs.scss
│ │ │ │ │ ├── button-extra.scss
│ │ │ │ │ ├── calendar.scss
│ │ │ │ │ ├── chart-easypie.scss
│ │ │ │ │ ├── chart-flot.scss
│ │ │ │ │ ├── circles.scss
│ │ │ │ │ ├── datatable.scss
│ │ │ │ │ ├── docs.scss
│ │ │ │ │ ├── dropdown-extra.scss
│ │ │ │ │ ├── form-elements.scss
│ │ │ │ │ ├── form-imgcrop.scss
│ │ │ │ │ ├── form-tags.scss
│ │ │ │ │ ├── form-validation.scss
│ │ │ │ │ ├── form-wizard.scss
│ │ │ │ │ ├── gmap.scss
│ │ │ │ │ ├── half-float.scss
│ │ │ │ │ ├── jqgrid.scss
│ │ │ │ │ ├── layout-animation.scss
│ │ │ │ │ ├── layout-extra.scss
│ │ │ │ │ ├── layout.scss
│ │ │ │ │ ├── mailbox.scss
│ │ │ │ │ ├── masonry-grid.scss
│ │ │ │ │ ├── media-queries.scss
│ │ │ │ │ ├── nestable.scss
│ │ │ │ │ ├── notify.scss
│ │ │ │ │ ├── offsidebar.scss
│ │ │ │ │ ├── panels.scss
│ │ │ │ │ ├── placeholder.scss
│ │ │ │ │ ├── plans.scss
│ │ │ │ │ ├── plugins.scss
│ │ │ │ │ ├── portlets.scss
│ │ │ │ │ ├── print.scss
│ │ │ │ │ ├── progress-extra.scss
│ │ │ │ │ ├── radial-bar.scss
│ │ │ │ │ ├── row-extra.scss
│ │ │ │ │ ├── settings.scss
│ │ │ │ │ ├── sidebar.scss
│ │ │ │ │ ├── slim-scroll.scss
│ │ │ │ │ ├── spinner.scss
│ │ │ │ │ ├── table-extras.scss
│ │ │ │ │ ├── table-grid.scss
│ │ │ │ │ ├── timeline.scss
│ │ │ │ │ ├── todo.scss
│ │ │ │ │ ├── top-navbar.scss
│ │ │ │ │ ├── typo.scss
│ │ │ │ │ ├── user-block.scss
│ │ │ │ │ ├── utils-definitions.scss
│ │ │ │ │ ├── utils.scss
│ │ │ │ │ ├── variables.scss
│ │ │ │ │ ├── vector-map.scss
│ │ │ │ │ └── widget.scss
│ │ │ │ ├── app.scss
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── bootstrap
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _badges.scss
│ │ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ │ ├── _close.scss
│ │ │ │ │ │ ├── _code.scss
│ │ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _media.scss
│ │ │ │ │ │ ├── mixins
│ │ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ │ ├── _modals.scss
│ │ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ │ ├── _navs.scss
│ │ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ │ ├── _pager.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ │ ├── _print.scss
│ │ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ │ ├── _tables.scss
│ │ │ │ │ │ ├── _theme.scss
│ │ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ │ ├── _type.scss
│ │ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ │ ├── _variables.scss
│ │ │ │ │ │ └── _wells.scss
│ │ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ │ ├── _bootstrap.scss
│ │ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ │ └── themes
│ │ │ │ ├── theme-a.scss
│ │ │ │ ├── theme-b.scss
│ │ │ │ ├── theme-c.scss
│ │ │ │ ├── theme-d.scss
│ │ │ │ ├── theme-e.scss
│ │ │ │ ├── theme-f.scss
│ │ │ │ ├── theme-g.scss
│ │ │ │ └── theme-h.scss
│ │ │ ├── application.css.scss
│ │ │ ├── base.css.scss
│ │ │ ├── blog.css.scss
│ │ │ ├── charts.css.scss
│ │ │ ├── dashboard.css.scss
│ │ │ ├── documentation.css.scss
│ │ │ ├── ecommerce.css.scss
│ │ │ ├── elements.css.scss
│ │ │ ├── extras.css.scss
│ │ │ ├── fonts.css.scss
│ │ │ ├── forms.css.scss
│ │ │ ├── forum.css.scss
│ │ │ ├── maps.css.scss
│ │ │ ├── multilevel.css.scss
│ │ │ ├── pages.css.scss
│ │ │ ├── tables.css.scss
│ │ │ ├── vendor.assets.css.scss
│ │ │ └── widgets.css.scss
│ │ ├── channels
│ │ │ └── application_cable
│ │ │ ├── channel.rb
│ │ │ └── connection.rb
│ │ ├── controllers
│ │ │ ├── api_controller.rb
│ │ │ ├── application_controller.rb
│ │ │ ├── blog_controller.rb
│ │ │ ├── charts_controller.rb
│ │ │ ├── concerns
│ │ │ ├── dashboard_controller.rb
│ │ │ ├── documentation_controller.rb
│ │ │ ├── ecommerce_controller.rb
│ │ │ ├── elements_controller.rb
│ │ │ ├── extras_controller.rb
│ │ │ ├── forms_controller.rb
│ │ │ ├── forum_controller.rb
│ │ │ ├── maps_controller.rb
│ │ │ ├── multilevel_controller.rb
│ │ │ ├── pages_controller.rb
│ │ │ ├── tables_controller.rb
│ │ │ └── widgets_controller.rb
│ │ ├── helpers
│ │ │ ├── application_helper.rb
│ │ │ ├── charts_helper.rb
│ │ │ ├── dashboard_helper.rb
│ │ │ ├── documentation_helper.rb
│ │ │ ├── elements_helper.rb
│ │ │ ├── extras_helper.rb
│ │ │ ├── forms_helper.rb
│ │ │ ├── maps_helper.rb
│ │ │ ├── multilevel_helper.rb
│ │ │ ├── pages_helper.rb
│ │ │ ├── tables_helper.rb
│ │ │ └── widgets_helper.rb
│ │ ├── jobs
│ │ │ └── application_job.rb
│ │ ├── mailers
│ │ │ └── application_mailer.rb
│ │ ├── models
│ │ │ ├── application_record.rb
│ │ │ └── concerns
│ │ └── views
│ │ ├── blog
│ │ │ ├── blog_articles.html.erb
│ │ │ ├── blog_article_view.html.erb
│ │ │ ├── blog.html.erb
│ │ │ └── blog_post.html.erb
│ │ ├── charts
│ │ │ ├── chartist.html.erb
│ │ │ ├── chartjs.html.erb
│ │ │ ├── flot.html.erb
│ │ │ ├── morris.html.erb
│ │ │ ├── radial.html.erb
│ │ │ └── rickshaw.html.erb
│ │ ├── dashboard
│ │ │ ├── dashboard_h.html.erb
│ │ │ ├── dashboard_v1.html.erb
│ │ │ ├── dashboard_v2.html.erb
│ │ │ └── dashboard_v3.html.erb
│ │ ├── documentation
│ │ │ └── index.html.erb
│ │ ├── ecommerce
│ │ │ ├── ecommerce_checkout.html.erb
│ │ │ ├── ecommerce_orders.html.erb
│ │ │ ├── ecommerce_order_view.html.erb
│ │ │ ├── ecommerce_products.html.erb
│ │ │ └── ecommerce_product_view.html.erb
│ │ ├── elements
│ │ │ ├── animation.html.erb
│ │ │ ├── button.html.erb
│ │ │ ├── carousel.html.erb
│ │ │ ├── colors.html.erb
│ │ │ ├── dropdown.html.erb
│ │ │ ├── fonticons.html.erb
│ │ │ ├── grid.html.erb
│ │ │ ├── gridmasonry.html.erb
│ │ │ ├── nestable.html.erb
│ │ │ ├── notification.html.erb
│ │ │ ├── panel.html.erb
│ │ │ ├── portlet.html.erb
│ │ │ ├── sortable.html.erb
│ │ │ ├── spinner.html.erb
│ │ │ ├── sweetalert.html.erb
│ │ │ ├── tour.html.erb
│ │ │ ├── typography.html.erb
│ │ │ └── weathericons.html.erb
│ │ ├── extras
│ │ │ ├── bug_tracker.html.erb
│ │ │ ├── calendar.html.erb
│ │ │ ├── contact_details.html.erb
│ │ │ ├── contacts.html.erb
│ │ │ ├── faq.html.erb
│ │ │ ├── file_manager.html.erb
│ │ │ ├── followers.html.erb
│ │ │ ├── help_center.html.erb
│ │ │ ├── invoice.html.erb
│ │ │ ├── mailbox.html.erb
│ │ │ ├── plans.html.erb
│ │ │ ├── profile.html.erb
│ │ │ ├── project_details.html.erb
│ │ │ ├── projects.html.erb
│ │ │ ├── search.html.erb
│ │ │ ├── settings.html.erb
│ │ │ ├── social_board.html.erb
│ │ │ ├── team_viewer.html.erb
│ │ │ ├── timeline.html.erb
│ │ │ ├── todo.html.erb
│ │ │ └── vote_links.html.erb
│ │ ├── forms
│ │ │ ├── extended.html.erb
│ │ │ ├── imgcrop.html.erb
│ │ │ ├── standard.html.erb
│ │ │ ├── upload.html.erb
│ │ │ ├── validation.html.erb
│ │ │ ├── wizard.html.erb
│ │ │ └── xeditable.html.erb
│ │ ├── forum
│ │ │ ├── forum_categories.html.erb
│ │ │ ├── forum_discussion.html.erb
│ │ │ └── forum_topics.html.erb
│ │ ├── layouts
│ │ │ ├── application-h.html.erb
│ │ │ ├── application.html.erb
│ │ │ ├── pages.html.erb
│ │ │ └── partials
│ │ │ ├── _footer.html.erb
│ │ │ ├── _offsidebar.html.erb
│ │ │ ├── _sidebar.html.erb
│ │ │ ├── _topnavbar_h.html.erb
│ │ │ └── _topnavbar.html.erb
│ │ ├── maps
│ │ │ ├── google.html.erb
│ │ │ └── vector.html.erb
│ │ ├── multilevel
│ │ │ ├── level1.html.erb
│ │ │ └── level3.html.erb
│ │ ├── pages
│ │ │ ├── error500.html.erb
│ │ │ ├── lock.html.erb
│ │ │ ├── login.html.erb
│ │ │ ├── maintenance.html.erb
│ │ │ ├── notfound.html.erb
│ │ │ ├── recover.html.erb
│ │ │ ├── register.html.erb
│ │ │ └── template.html.erb
│ │ ├── tables
│ │ │ ├── datatable.html.erb
│ │ │ ├── extended.html.erb
│ │ │ ├── jqgrid.html.erb
│ │ │ └── standard.html.erb
│ │ └── widgets
│ │ └── index.html.erb
│ ├── bin
│ │ ├── bundle
│ │ ├── rails
│ │ ├── rake
│ │ ├── setup
│ │ ├── update
│ │ └── yarn
│ ├── config
│ │ ├── application.rb
│ │ ├── boot.rb
│ │ ├── cable.yml
│ │ ├── database.yml
│ │ ├── environment.rb
│ │ ├── environments
│ │ │ ├── development.rb
│ │ │ ├── production.rb
│ │ │ └── test.rb
│ │ ├── initializers
│ │ │ ├── application_controller_renderer.rb
│ │ │ ├── assets.rb
│ │ │ ├── backtrace_silencers.rb
│ │ │ ├── cookies_serializer.rb
│ │ │ ├── filter_parameter_logging.rb
│ │ │ ├── inflections.rb
│ │ │ ├── mime_types.rb
│ │ │ ├── new_framework_defaults_5_1.rb
│ │ │ ├── session_store.rb
│ │ │ └── wrap_parameters.rb
│ │ ├── locales
│ │ │ └── en.yml
│ │ ├── puma.rb
│ │ ├── routes.rb
│ │ └── secrets.yml
│ ├── config.ru
│ ├── db
│ │ └── seeds.rb
│ ├── Gemfile
│ ├── Gemfile.lock
│ ├── lib
│ │ ├── assets
│ │ └── tasks
│ ├── modernizr-config.json
│ ├── package.json
│ ├── package-lock.json
│ ├── public
│ │ ├── 404.html
│ │ ├── 422.html
│ │ ├── 500.html
│ │ ├── favicon.ico
│ │ └── robots.txt
│ ├── Rakefile
│ ├── README.md
│ ├── test
│ │ ├── application_system_test_case.rb
│ │ ├── controllers
│ │ │ ├── charts_controller_test.rb
│ │ │ ├── dashboard_controller_test.rb
│ │ │ ├── documentation_controller_test.rb
│ │ │ ├── elements_controller_test.rb
│ │ │ ├── extras_controller_test.rb
│ │ │ ├── forms_controller_test.rb
│ │ │ ├── maps_controller_test.rb
│ │ │ ├── multilevel_controller_test.rb
│ │ │ ├── pages_controller_test.rb
│ │ │ ├── tables_controller_test.rb
│ │ │ └── widgets_controller_test.rb
│ │ ├── fixtures
│ │ │ └── files
│ │ ├── helpers
│ │ │ ├── charts_helper_test.rb
│ │ │ ├── dashboard_helper_test.rb
│ │ │ ├── documentation_helper_test.rb
│ │ │ ├── elements_helper_test.rb
│ │ │ ├── extras_helper_test.rb
│ │ │ ├── forms_helper_test.rb
│ │ │ ├── maps_helper_test.rb
│ │ │ ├── multilevel_helper_test.rb
│ │ │ ├── pages_helper_test.rb
│ │ │ ├── tables_helper_test.rb
│ │ │ └── widgets_helper_test.rb
│ │ ├── integration
│ │ ├── mailers
│ │ ├── models
│ │ ├── system
│ │ └── test_helper.rb
│ └── vendor
│ └── assets
│ ├── images
│ │ └── bootstrap-colorpicker
│ │ ├── alpha-horizontal.png
│ │ ├── alpha.png
│ │ ├── hue-horizontal.png
│ │ ├── hue.png
│ │ └── saturation.png
│ ├── javascripts
│ │ └── modernizr.js
│ └── stylesheets
├── backend-rails-seed
│ └── Angle
│ ├── app
│ │ ├── assets
│ │ │ ├── api
│ │ │ │ └── datatable.json
│ │ │ ├── documentation
│ │ │ │ └── readme.md
│ │ │ ├── i18n
│ │ │ │ ├── site-en.json
│ │ │ │ └── site-es.json
│ │ │ ├── images
│ │ │ │ └── angle
│ │ │ │ ├── bg10.jpg
│ │ │ │ ├── bg1.jpg
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── bg3.jpg
│ │ │ │ ├── bg4.jpg
│ │ │ │ ├── bg5.jpg
│ │ │ │ ├── bg6.jpg
│ │ │ │ ├── bg7.jpg
│ │ │ │ ├── bg8.jpg
│ │ │ │ ├── bg9.jpg
│ │ │ │ ├── dummy.png
│ │ │ │ ├── lock-bg.jpg
│ │ │ │ ├── logo.png
│ │ │ │ ├── logo-single.png
│ │ │ │ ├── mb-sample.jpg
│ │ │ │ ├── mockup.png
│ │ │ │ ├── profile-bg.jpg
│ │ │ │ └── user
│ │ │ │ ├── 01.jpg
│ │ │ │ ├── 02.jpg
│ │ │ │ ├── 03.jpg
│ │ │ │ ├── 04.jpg
│ │ │ │ ├── 05.jpg
│ │ │ │ ├── 06.jpg
│ │ │ │ ├── 07.jpg
│ │ │ │ ├── 08.jpg
│ │ │ │ ├── 09.jpg
│ │ │ │ ├── 10.jpg
│ │ │ │ ├── 11.jpg
│ │ │ │ ├── 12.jpg
│ │ │ │ └── 13.jpg
│ │ │ ├── javascripts
│ │ │ │ ├── angle
│ │ │ │ │ ├── app.init.js
│ │ │ │ │ ├── custom
│ │ │ │ │ │ └── custom.js
│ │ │ │ │ └── modules
│ │ │ │ │ ├── bootstrap-start.js
│ │ │ │ │ ├── clear-storage.js
│ │ │ │ │ ├── constants.js
│ │ │ │ │ ├── localize.js
│ │ │ │ │ ├── navbar-search.js
│ │ │ │ │ ├── sidebar.js
│ │ │ │ │ ├── toggle-state.js
│ │ │ │ │ └── utils.js
│ │ │ │ ├── application.js
│ │ │ │ ├── base.js
│ │ │ │ └── singleview.js.coffee
│ │ │ └── stylesheets
│ │ │ ├── angle
│ │ │ │ ├── app
│ │ │ │ │ ├── animate.scss
│ │ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ │ ├── breadcrumbs.scss
│ │ │ │ │ ├── layout-animation.scss
│ │ │ │ │ ├── layout-extra.scss
│ │ │ │ │ ├── layout.scss
│ │ │ │ │ ├── media-queries.scss
│ │ │ │ │ ├── offsidebar.scss
│ │ │ │ │ ├── print.scss
│ │ │ │ │ ├── sidebar.scss
│ │ │ │ │ ├── top-navbar.scss
│ │ │ │ │ ├── typo.scss
│ │ │ │ │ ├── utils-definitions.scss
│ │ │ │ │ ├── utils.scss
│ │ │ │ │ └── variables.scss
│ │ │ │ ├── app.scss
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── bootstrap
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _badges.scss
│ │ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ │ ├── _close.scss
│ │ │ │ │ │ ├── _code.scss
│ │ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _media.scss
│ │ │ │ │ │ ├── mixins
│ │ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ │ ├── _modals.scss
│ │ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ │ ├── _navs.scss
│ │ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ │ ├── _pager.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ │ ├── _print.scss
│ │ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ │ ├── _tables.scss
│ │ │ │ │ │ ├── _theme.scss
│ │ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ │ ├── _type.scss
│ │ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ │ ├── _variables.scss
│ │ │ │ │ │ └── _wells.scss
│ │ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ │ ├── _bootstrap.scss
│ │ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ │ └── themes
│ │ │ │ ├── theme-a.scss
│ │ │ │ ├── theme-b.scss
│ │ │ │ ├── theme-c.scss
│ │ │ │ ├── theme-d.scss
│ │ │ │ ├── theme-e.scss
│ │ │ │ ├── theme-f.scss
│ │ │ │ ├── theme-g.scss
│ │ │ │ └── theme-h.scss
│ │ │ ├── application.css.scss
│ │ │ ├── base.css.scss
│ │ │ ├── fonts.css.scss
│ │ │ ├── singleview.scss
│ │ │ └── vendor.assets.css.scss
│ │ ├── channels
│ │ │ └── application_cable
│ │ │ ├── channel.rb
│ │ │ └── connection.rb
│ │ ├── controllers
│ │ │ ├── api_controller.rb
│ │ │ ├── application_controller.rb
│ │ │ ├── concerns
│ │ │ └── singleview_controller.rb
│ │ ├── helpers
│ │ │ ├── application_helper.rb
│ │ │ └── singleview_helper.rb
│ │ ├── jobs
│ │ │ └── application_job.rb
│ │ ├── mailers
│ │ │ └── application_mailer.rb
│ │ ├── models
│ │ │ ├── application_record.rb
│ │ │ └── concerns
│ │ └── views
│ │ ├── layouts
│ │ │ ├── application.html.erb
│ │ │ └── partials
│ │ │ ├── _footer.html.erb
│ │ │ ├── _offsidebar.html.erb
│ │ │ ├── _sidebar.html.erb
│ │ │ └── _topnavbar.html.erb
│ │ └── singleview
│ │ └── index.html.erb
│ ├── bin
│ │ ├── bundle
│ │ ├── rails
│ │ ├── rake
│ │ ├── setup
│ │ ├── update
│ │ └── yarn
│ ├── config
│ │ ├── application.rb
│ │ ├── boot.rb
│ │ ├── cable.yml
│ │ ├── database.yml
│ │ ├── environment.rb
│ │ ├── environments
│ │ │ ├── development.rb
│ │ │ ├── production.rb
│ │ │ └── test.rb
│ │ ├── initializers
│ │ │ ├── application_controller_renderer.rb
│ │ │ ├── assets.rb
│ │ │ ├── backtrace_silencers.rb
│ │ │ ├── cookies_serializer.rb
│ │ │ ├── filter_parameter_logging.rb
│ │ │ ├── inflections.rb
│ │ │ ├── mime_types.rb
│ │ │ ├── new_framework_defaults_5_1.rb
│ │ │ ├── session_store.rb
│ │ │ └── wrap_parameters.rb
│ │ ├── locales
│ │ │ └── en.yml
│ │ ├── puma.rb
│ │ ├── routes.rb
│ │ └── secrets.yml
│ ├── config.ru
│ ├── db
│ │ └── seeds.rb
│ ├── Gemfile
│ ├── Gemfile.lock
│ ├── lib
│ │ ├── assets
│ │ └── tasks
│ ├── modernizr-config.json
│ ├── package.json
│ ├── package-lock.json
│ ├── public
│ │ ├── 404.html
│ │ ├── 422.html
│ │ ├── 500.html
│ │ ├── favicon.ico
│ │ └── robots.txt
│ ├── Rakefile
│ ├── README.md
│ ├── test
│ │ ├── controllers
│ │ │ ├── charts_controller_test.rb
│ │ │ ├── dashboard_controller_test.rb
│ │ │ ├── documentation_controller_test.rb
│ │ │ ├── elements_controller_test.rb
│ │ │ ├── extras_controller_test.rb
│ │ │ ├── forms_controller_test.rb
│ │ │ ├── maps_controller_test.rb
│ │ │ ├── multilevel_controller_test.rb
│ │ │ ├── pages_controller_test.rb
│ │ │ ├── singleview_controller_test.rb
│ │ │ ├── tables_controller_test.rb
│ │ │ └── widgets_controller_test.rb
│ │ ├── fixtures
│ │ ├── helpers
│ │ │ ├── charts_helper_test.rb
│ │ │ ├── dashboard_helper_test.rb
│ │ │ ├── documentation_helper_test.rb
│ │ │ ├── elements_helper_test.rb
│ │ │ ├── extras_helper_test.rb
│ │ │ ├── forms_helper_test.rb
│ │ │ ├── maps_helper_test.rb
│ │ │ ├── multilevel_helper_test.rb
│ │ │ ├── pages_helper_test.rb
│ │ │ ├── singleview_helper_test.rb
│ │ │ ├── tables_helper_test.rb
│ │ │ └── widgets_helper_test.rb
│ │ ├── integration
│ │ ├── mailers
│ │ ├── models
│ │ └── test_helper.rb
│ └── vendor
│ └── assets
│ ├── javascripts
│ │ └── modernizr.js
│ └── stylesheets
├── change.log
├── documentation
│ ├── angular
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── documenter_style.css
│ │ │ │ └── img
│ │ │ │ ├── info.png
│ │ │ │ └── warning.png
│ │ │ └── js
│ │ │ ├── google-code-prettify
│ │ │ │ ├── prettify.css
│ │ │ │ └── prettify.js
│ │ │ ├── jquery.easing.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.scrollTo.js
│ │ │ └── script.js
│ │ └── index.html
│ ├── angular5
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── documenter_style.css
│ │ │ │ └── img
│ │ │ │ ├── info.png
│ │ │ │ └── warning.png
│ │ │ └── js
│ │ │ ├── google-code-prettify
│ │ │ │ ├── prettify.css
│ │ │ │ └── prettify.js
│ │ │ ├── jquery.easing.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.scrollTo.js
│ │ │ └── script.js
│ │ └── index.html
│ ├── angular5-bs4
│ │ ├── assets
│ │ │ ├── scripts.js
│ │ │ └── styles.css
│ │ └── index.html
│ ├── frontend
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── documenter_style.css
│ │ │ │ └── img
│ │ │ │ ├── info.png
│ │ │ │ └── warning.png
│ │ │ └── js
│ │ │ ├── google-code-prettify
│ │ │ │ ├── prettify.css
│ │ │ │ └── prettify.js
│ │ │ ├── jquery.easing.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.scrollTo.js
│ │ │ └── script.js
│ │ └── index.html
│ ├── html5jquery-bs4
│ │ ├── assets
│ │ │ ├── scripts.js
│ │ │ └── styles.css
│ │ └── index.html
│ ├── jquery
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── documenter_style.css
│ │ │ │ └── img
│ │ │ │ ├── info.png
│ │ │ │ └── warning.png
│ │ │ └── js
│ │ │ ├── google-code-prettify
│ │ │ │ ├── prettify.css
│ │ │ │ └── prettify.js
│ │ │ ├── jquery.easing.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.scrollTo.js
│ │ │ └── script.js
│ │ └── index.html
│ ├── meanjs
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── documenter_style.css
│ │ │ │ └── img
│ │ │ │ ├── info.png
│ │ │ │ └── warning.png
│ │ │ └── js
│ │ │ ├── google-code-prettify
│ │ │ │ ├── prettify.css
│ │ │ │ └── prettify.js
│ │ │ ├── jquery.easing.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.scrollTo.js
│ │ │ └── script.js
│ │ └── index.html
│ ├── meteor-angular
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── documenter_style.css
│ │ │ │ └── img
│ │ │ │ ├── info.png
│ │ │ │ └── warning.png
│ │ │ └── js
│ │ │ ├── google-code-prettify
│ │ │ │ ├── prettify.css
│ │ │ │ └── prettify.js
│ │ │ ├── jquery.easing.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.scrollTo.js
│ │ │ └── script.js
│ │ └── index.html
│ ├── meteor-jquery
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── documenter_style.css
│ │ │ │ └── img
│ │ │ │ ├── info.png
│ │ │ │ └── warning.png
│ │ │ └── js
│ │ │ ├── google-code-prettify
│ │ │ │ ├── prettify.css
│ │ │ │ └── prettify.js
│ │ │ ├── jquery.easing.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.scrollTo.js
│ │ │ └── script.js
│ │ └── index.html
│ ├── mvc5-angularjs
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── documenter_style.css
│ │ │ │ └── img
│ │ │ │ ├── info.png
│ │ │ │ └── warning.png
│ │ │ └── js
│ │ │ ├── google-code-prettify
│ │ │ │ ├── prettify.css
│ │ │ │ └── prettify.js
│ │ │ ├── jquery.easing.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.scrollTo.js
│ │ │ └── script.js
│ │ └── index.html
│ ├── mvc5-jquery
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── documenter_style.css
│ │ │ │ └── img
│ │ │ │ ├── info.png
│ │ │ │ └── warning.png
│ │ │ └── js
│ │ │ ├── google-code-prettify
│ │ │ │ ├── prettify.css
│ │ │ │ └── prettify.js
│ │ │ ├── jquery.easing.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.scrollTo.js
│ │ │ └── script.js
│ │ ├── index.html
│ │ ├── layout-main.jpg
│ │ ├── MVC51.jpg
│ │ ├── MVC53.jpg
│ │ ├── MVC54.jpg
│ │ ├── MVC55.jpg
│ │ └── MVC56.jpg
│ ├── netcore-angular
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── documenter_style.css
│ │ │ │ └── img
│ │ │ │ ├── info.png
│ │ │ │ └── warning.png
│ │ │ └── js
│ │ │ ├── google-code-prettify
│ │ │ │ ├── prettify.css
│ │ │ │ └── prettify.js
│ │ │ ├── jquery.easing.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.scrollTo.js
│ │ │ └── script.js
│ │ └── index.html
│ ├── netcore-angular5
│ │ ├── assets
│ │ │ ├── scripts.js
│ │ │ └── styles.css
│ │ └── index.html
│ ├── netcore-jquery
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── documenter_style.css
│ │ │ │ └── img
│ │ │ │ ├── info.png
│ │ │ │ └── warning.png
│ │ │ └── js
│ │ │ ├── google-code-prettify
│ │ │ │ ├── prettify.css
│ │ │ │ └── prettify.js
│ │ │ ├── jquery.easing.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.scrollTo.js
│ │ │ └── script.js
│ │ └── index.html
│ ├── rails
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── documenter_style.css
│ │ │ │ └── img
│ │ │ │ ├── info.png
│ │ │ │ └── warning.png
│ │ │ └── js
│ │ │ ├── google-code-prettify
│ │ │ │ ├── prettify.css
│ │ │ │ └── prettify.js
│ │ │ ├── jquery.easing.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.scrollTo.js
│ │ │ └── script.js
│ │ └── index.html
│ ├── reactjs
│ │ ├── assets
│ │ │ ├── css
│ │ │ │ ├── documenter_style.css
│ │ │ │ └── img
│ │ │ │ ├── info.png
│ │ │ │ └── warning.png
│ │ │ └── js
│ │ │ ├── google-code-prettify
│ │ │ │ ├── prettify.css
│ │ │ │ └── prettify.js
│ │ │ ├── jquery.easing.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.scrollTo.js
│ │ │ └── script.js
│ │ └── index.html
│ └── vendor-credits.html
├── frontend
│ ├── master
│ │ ├── bower.json
│ │ ├── gulpfile.js
│ │ ├── js
│ │ │ ├── modules
│ │ │ │ └── settings.js
│ │ │ └── script.js
│ │ ├── less
│ │ │ ├── bootstrap
│ │ │ │ ├── alerts.less
│ │ │ │ ├── badges.less
│ │ │ │ ├── bootstrap.less
│ │ │ │ ├── breadcrumbs.less
│ │ │ │ ├── button-groups.less
│ │ │ │ ├── buttons.less
│ │ │ │ ├── carousel.less
│ │ │ │ ├── close.less
│ │ │ │ ├── code.less
│ │ │ │ ├── component-animations.less
│ │ │ │ ├── dropdowns.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── glyphicons.less
│ │ │ │ ├── grid.less
│ │ │ │ ├── input-groups.less
│ │ │ │ ├── jumbotron.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── media.less
│ │ │ │ ├── mixins
│ │ │ │ │ ├── alerts.less
│ │ │ │ │ ├── background-variant.less
│ │ │ │ │ ├── border-radius.less
│ │ │ │ │ ├── buttons.less
│ │ │ │ │ ├── center-block.less
│ │ │ │ │ ├── clearfix.less
│ │ │ │ │ ├── forms.less
│ │ │ │ │ ├── gradients.less
│ │ │ │ │ ├── grid-framework.less
│ │ │ │ │ ├── grid.less
│ │ │ │ │ ├── hide-text.less
│ │ │ │ │ ├── image.less
│ │ │ │ │ ├── labels.less
│ │ │ │ │ ├── list-group.less
│ │ │ │ │ ├── nav-divider.less
│ │ │ │ │ ├── nav-vertical-align.less
│ │ │ │ │ ├── opacity.less
│ │ │ │ │ ├── pagination.less
│ │ │ │ │ ├── panels.less
│ │ │ │ │ ├── progress-bar.less
│ │ │ │ │ ├── reset-filter.less
│ │ │ │ │ ├── reset-text.less
│ │ │ │ │ ├── resize.less
│ │ │ │ │ ├── responsive-visibility.less
│ │ │ │ │ ├── size.less
│ │ │ │ │ ├── tab-focus.less
│ │ │ │ │ ├── table-row.less
│ │ │ │ │ ├── text-emphasis.less
│ │ │ │ │ ├── text-overflow.less
│ │ │ │ │ └── vendor-prefixes.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── modals.less
│ │ │ │ ├── navbar.less
│ │ │ │ ├── navs.less
│ │ │ │ ├── normalize.less
│ │ │ │ ├── pager.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── popovers.less
│ │ │ │ ├── print.less
│ │ │ │ ├── progress-bars.less
│ │ │ │ ├── responsive-embed.less
│ │ │ │ ├── responsive-utilities.less
│ │ │ │ ├── scaffolding.less
│ │ │ │ ├── tables.less
│ │ │ │ ├── theme.less
│ │ │ │ ├── thumbnails.less
│ │ │ │ ├── tooltip.less
│ │ │ │ ├── type.less
│ │ │ │ ├── utilities.less
│ │ │ │ ├── variables.less
│ │ │ │ └── wells.less
│ │ │ ├── components
│ │ │ │ ├── buttons.less
│ │ │ │ ├── contact.less
│ │ │ │ ├── download.less
│ │ │ │ ├── features.less
│ │ │ │ ├── feedbacks.less
│ │ │ │ ├── footer.less
│ │ │ │ ├── form-elements.less
│ │ │ │ ├── header.less
│ │ │ │ ├── media-queries.less
│ │ │ │ ├── plans.less
│ │ │ │ ├── preloader.less
│ │ │ │ ├── products.less
│ │ │ │ ├── scaffolding.less
│ │ │ │ ├── sections.less
│ │ │ │ ├── settings.less
│ │ │ │ ├── shots.less
│ │ │ │ ├── sidetext.less
│ │ │ │ ├── topbar.less
│ │ │ │ ├── typo.less
│ │ │ │ ├── variables.less
│ │ │ │ └── versions.less
│ │ │ ├── styles.less
│ │ │ └── themes
│ │ │ ├── theme-a.less
│ │ │ ├── theme-b.less
│ │ │ ├── theme-c.less
│ │ │ └── theme-d.less
│ │ ├── package.json
│ │ ├── package-lock.json
│ │ ├── pug
│ │ │ ├── _head.pug
│ │ │ ├── _ie.pug
│ │ │ ├── index.pug
│ │ │ ├── _scripts.pug
│ │ │ └── sections
│ │ │ ├── contact.pug
│ │ │ ├── download.pug
│ │ │ ├── features.pug
│ │ │ ├── feedback.pug
│ │ │ ├── footer.pug
│ │ │ ├── header.pug
│ │ │ ├── pic-text.pug
│ │ │ ├── plans.pug
│ │ │ ├── preloader.pug
│ │ │ ├── products.pug
│ │ │ ├── settings.pug
│ │ │ ├── shots.pug
│ │ │ ├── text-pic.pug
│ │ │ └── versions.pug
│ │ └── vendor.json
│ ├── _PSD_mokups
│ │ ├── contact.map.psd
│ │ ├── HTML5-Boilerplate-Favicons_v3.1.psd
│ │ ├── ipad-air.psd
│ │ ├── iphone-angle.psd
│ │ ├── iphone-minimal.psd
│ │ ├── logo-basic.psd
│ │ └── logo-single.psd
│ └── site
│ ├── css
│ │ ├── styles.css
│ │ ├── styles-rtl.css
│ │ ├── theme-a.css
│ │ ├── theme-b.css
│ │ ├── theme-c.css
│ │ └── theme-d.css
│ ├── img
│ │ ├── bg-fallback-download.jpg
│ │ ├── bg-fallback-feedback.jpg
│ │ ├── bg-fallback-header.jpg
│ │ ├── clients
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ └── 03.jpg
│ │ ├── contact.map.jpg
│ │ ├── favicon
│ │ │ ├── apple-touch-icon-114x114-precomposed.png
│ │ │ ├── apple-touch-icon-144x144-precomposed.png
│ │ │ ├── apple-touch-icon-57x57-precomposed.png
│ │ │ ├── apple-touch-icon-72x72-precomposed.png
│ │ │ ├── apple-touch-icon.png
│ │ │ ├── favicon.ico
│ │ │ └── favicon.png
│ │ ├── header.shot.png
│ │ ├── ipad-air.png
│ │ ├── iphone-angle.png
│ │ ├── iphone-minimal.png
│ │ ├── logo@2x.png
│ │ ├── logo-dark@2x.png
│ │ ├── logo-dark.png
│ │ ├── logo.png
│ │ ├── products
│ │ │ ├── beadmin.png
│ │ │ ├── centric.png
│ │ │ └── dasha.png
│ │ ├── shots
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ └── 04.jpg
│ │ └── versions
│ │ ├── angularjs.png
│ │ ├── angular-material.png
│ │ ├── bs4.png
│ │ ├── html5.png
│ │ ├── meanjs.png
│ │ ├── meteor.png
│ │ ├── net.png
│ │ ├── ngx.png
│ │ ├── react.png
│ │ ├── ror.png
│ │ ├── sass.png
│ │ └── vs.png
│ ├── index.html
│ ├── js
│ │ └── scripts.js
│ ├── vendor
│ │ ├── animate.css
│ │ │ └── animate.css
│ │ ├── background-video
│ │ │ └── jquery.backgroundvideo.js
│ │ ├── bootstrap
│ │ │ └── dist
│ │ │ ├── css
│ │ │ │ └── bootstrap.css
│ │ │ └── js
│ │ │ └── bootstrap.js
│ │ ├── font-awesome
│ │ │ ├── css
│ │ │ │ └── font-awesome.min.css
│ │ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ ├── html5shiv
│ │ │ └── dist
│ │ │ └── html5shiv.js
│ │ ├── jquery
│ │ │ └── dist
│ │ │ └── jquery.min.js
│ │ ├── jquery.browser
│ │ │ └── dist
│ │ │ └── jquery.browser.js
│ │ ├── jquery.easing
│ │ │ └── js
│ │ │ └── jquery.easing.js
│ │ ├── jQuery-One-Page-Nav
│ │ │ └── jquery.nav.js
│ │ ├── jquery.scrollTo
│ │ │ └── jquery.scrollTo.js
│ │ ├── jQuery-Storage-API
│ │ │ └── jquery.storageapi.js
│ │ ├── matchMedia
│ │ │ └── matchMedia.js
│ │ ├── Nivo-Lightbox
│ │ │ ├── nivo-lightbox.css
│ │ │ ├── nivo-lightbox.js
│ │ │ └── themes
│ │ │ └── default
│ │ │ ├── close.png
│ │ │ ├── default.css
│ │ │ ├── next.png
│ │ │ └── prev.png
│ │ ├── nprogress
│ │ │ ├── nprogress.css
│ │ │ └── nprogress.js
│ │ ├── owl.carousel
│ │ │ └── dist
│ │ │ ├── assets
│ │ │ │ ├── ajax-loader.gif
│ │ │ │ ├── owl.carousel.css
│ │ │ │ ├── owl.theme.default.css
│ │ │ │ └── owl.video.play.png
│ │ │ └── owl.carousel.js
│ │ ├── respond
│ │ │ └── src
│ │ │ └── respond.js
│ │ ├── retina.js
│ │ │ └── dist
│ │ │ └── retina.js
│ │ ├── smoothscroll
│ │ │ └── smoothscroll.js
│ │ ├── waitForImages
│ │ │ └── dist
│ │ │ └── jquery.waitforimages.min.js
│ │ └── wow
│ │ └── dist
│ │ └── wow.js
│ └── video
│ ├── video.jpg
│ ├── video.mp4
│ └── video.webm
├── html5jquery-bs4
│ ├── app
│ │ ├── 404.html
│ │ ├── 500.html
│ │ ├── animations.html
│ │ ├── blog-articles.html
│ │ ├── blog-article-view.html
│ │ ├── blog.html
│ │ ├── blog-post.html
│ │ ├── bug-tracker.html
│ │ ├── buttons.html
│ │ ├── calendar.html
│ │ ├── cards.html
│ │ ├── carousel.html
│ │ ├── chart-chartist.html
│ │ ├── chart-flot.html
│ │ ├── chart-js.html
│ │ ├── chart-morris.html
│ │ ├── chart-radial.html
│ │ ├── chart-rickshaw.html
│ │ ├── colors.html
│ │ ├── contact-details.html
│ │ ├── contacts.html
│ │ ├── css
│ │ │ ├── app.css
│ │ │ ├── app-rtl.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap-rtl.css
│ │ │ ├── theme-a.css
│ │ │ ├── theme-b.css
│ │ │ ├── theme-c.css
│ │ │ ├── theme-d.css
│ │ │ ├── theme-e.css
│ │ │ ├── theme-f.css
│ │ │ ├── theme-g.css
│ │ │ └── theme-h.css
│ │ ├── dashboard_h.html
│ │ ├── dashboard.html
│ │ ├── dashboard_v2.html
│ │ ├── dashboard_v3.html
│ │ ├── documentation.html
│ │ ├── dropdown-animations.html
│ │ ├── ecommerce-checkout.html
│ │ ├── ecommerce-orders.html
│ │ ├── ecommerce-order-view.html
│ │ ├── ecommerce-products.html
│ │ ├── ecommerce-product-view.html
│ │ ├── faq.html
│ │ ├── file-manager.html
│ │ ├── followers.html
│ │ ├── form-extended.html
│ │ ├── form-imagecrop.html
│ │ ├── form-standard.html
│ │ ├── form-upload.html
│ │ ├── form-validation.html
│ │ ├── form-wizard.html
│ │ ├── form-xeditable.html
│ │ ├── forum-categories.html
│ │ ├── forum-discussion.html
│ │ ├── forum-topics.html
│ │ ├── grid.html
│ │ ├── grid-masonry.html
│ │ ├── help-center.html
│ │ ├── icons-font.html
│ │ ├── icons-weather.html
│ │ ├── img
│ │ │ ├── bg10.jpg
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.jpg
│ │ │ ├── bg3.jpg
│ │ │ ├── bg4.jpg
│ │ │ ├── bg5.jpg
│ │ │ ├── bg6.jpg
│ │ │ ├── bg7.jpg
│ │ │ ├── bg8.jpg
│ │ │ ├── bg9.jpg
│ │ │ ├── dummy.png
│ │ │ ├── lock-bg.jpg
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ ├── mb-sample.jpg
│ │ │ ├── mockup.png
│ │ │ ├── profile-bg.jpg
│ │ │ └── user
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 04.jpg
│ │ │ ├── 05.jpg
│ │ │ ├── 06.jpg
│ │ │ ├── 07.jpg
│ │ │ ├── 08.jpg
│ │ │ ├── 09.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ └── 13.jpg
│ │ ├── invoice.html
│ │ ├── js
│ │ │ └── app.js
│ │ ├── lock.html
│ │ ├── login.html
│ │ ├── mailbox.html
│ │ ├── maintenance.html
│ │ ├── maps-google.html
│ │ ├── maps-vector.html
│ │ ├── multilevel-1.html
│ │ ├── multilevel-3.html
│ │ ├── nestable.html
│ │ ├── notifications.html
│ │ ├── plans.html
│ │ ├── portlets.html
│ │ ├── profile.html
│ │ ├── project-details.html
│ │ ├── projects.html
│ │ ├── recover.html
│ │ ├── register.html
│ │ ├── search.html
│ │ ├── server
│ │ │ ├── datatable.json
│ │ │ ├── documentation
│ │ │ │ └── readme.md
│ │ │ ├── i18n
│ │ │ │ ├── site-en.json
│ │ │ │ └── site-es.json
│ │ │ └── xeditable-groups.json
│ │ ├── settings.html
│ │ ├── social-board.html
│ │ ├── sortable.html
│ │ ├── spinners.html
│ │ ├── sweetalert.html
│ │ ├── table-bootgrid.html
│ │ ├── table-datatable.html
│ │ ├── table-extended.html
│ │ ├── table-standard.html
│ │ ├── team-viewer.html
│ │ ├── template.html
│ │ ├── timeline.html
│ │ ├── todo.html
│ │ ├── typo.html
│ │ ├── vendor
│ │ │ ├── animate.css
│ │ │ │ └── animate.css
│ │ │ ├── animo
│ │ │ │ └── animo.js
│ │ │ ├── bootstrap
│ │ │ │ └── dist
│ │ │ │ ├── css
│ │ │ │ │ └── bootstrap.css
│ │ │ │ └── js
│ │ │ │ └── bootstrap.js
│ │ │ ├── bootstrap-colorpicker
│ │ │ │ └── dist
│ │ │ │ ├── css
│ │ │ │ │ └── bootstrap-colorpicker.css
│ │ │ │ ├── img
│ │ │ │ │ └── bootstrap-colorpicker
│ │ │ │ │ ├── alpha-horizontal.png
│ │ │ │ │ ├── alpha.png
│ │ │ │ │ ├── hue-horizontal.png
│ │ │ │ │ ├── hue.png
│ │ │ │ │ └── saturation.png
│ │ │ │ └── js
│ │ │ │ └── bootstrap-colorpicker.js
│ │ │ ├── bootstrap-datepicker
│ │ │ │ └── dist
│ │ │ │ ├── css
│ │ │ │ │ └── bootstrap-datepicker.css
│ │ │ │ └── js
│ │ │ │ └── bootstrap-datepicker.js
│ │ │ ├── bootstrap-filestyle
│ │ │ │ └── src
│ │ │ │ └── bootstrap-filestyle.js
│ │ │ ├── bootstrap-slider
│ │ │ │ └── dist
│ │ │ │ ├── bootstrap-slider.js
│ │ │ │ └── css
│ │ │ │ └── bootstrap-slider.css
│ │ │ ├── bootstrap-tagsinput
│ │ │ │ └── dist
│ │ │ │ ├── bootstrap-tagsinput.css
│ │ │ │ └── bootstrap-tagsinput.js
│ │ │ ├── bootstrap-wysiwyg
│ │ │ │ ├── css
│ │ │ │ │ └── style.css
│ │ │ │ └── js
│ │ │ │ └── bootstrap-wysiwyg.min.js
│ │ │ ├── chartist
│ │ │ │ └── dist
│ │ │ │ ├── chartist.css
│ │ │ │ └── chartist.js
│ │ │ ├── chart.js
│ │ │ │ └── dist
│ │ │ │ └── Chart.js
│ │ │ ├── chosen-js
│ │ │ │ ├── chosen.css
│ │ │ │ ├── chosen.jquery.js
│ │ │ │ ├── chosen-sprite@2x.png
│ │ │ │ └── chosen-sprite.png
│ │ │ ├── components-jqueryui
│ │ │ │ ├── jquery-ui.js
│ │ │ │ └── themes
│ │ │ │ └── smoothness
│ │ │ │ ├── images
│ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ │ └── jquery-ui.css
│ │ │ ├── cropper
│ │ │ │ └── dist
│ │ │ │ ├── cropper.css
│ │ │ │ └── cropper.js
│ │ │ ├── d3
│ │ │ │ └── d3.js
│ │ │ ├── datatables.net
│ │ │ │ └── js
│ │ │ │ └── jquery.dataTables.js
│ │ │ ├── datatables.net-bs4
│ │ │ │ ├── css
│ │ │ │ │ └── dataTables.bootstrap4.css
│ │ │ │ └── js
│ │ │ │ └── dataTables.bootstrap4.js
│ │ │ ├── datatables.net-buttons
│ │ │ │ └── js
│ │ │ │ ├── buttons.colVis.js
│ │ │ │ ├── buttons.flash.js
│ │ │ │ ├── buttons.html5.js
│ │ │ │ ├── buttons.print.js
│ │ │ │ └── dataTables.buttons.js
│ │ │ ├── datatables.net-buttons-bs
│ │ │ │ ├── css
│ │ │ │ │ └── buttons.bootstrap.css
│ │ │ │ └── js
│ │ │ │ └── buttons.bootstrap.js
│ │ │ ├── datatables.net-keytable
│ │ │ │ └── js
│ │ │ │ └── dataTables.keyTable.js
│ │ │ ├── datatables.net-keytable-bs
│ │ │ │ └── css
│ │ │ │ └── keyTable.bootstrap.css
│ │ │ ├── datatables.net-responsive
│ │ │ │ └── js
│ │ │ │ └── dataTables.responsive.js
│ │ │ ├── datatables.net-responsive-bs
│ │ │ │ ├── css
│ │ │ │ │ └── responsive.bootstrap.css
│ │ │ │ └── js
│ │ │ │ └── responsive.bootstrap.js
│ │ │ ├── dropzone
│ │ │ │ └── dist
│ │ │ │ ├── basic.css
│ │ │ │ ├── dropzone.css
│ │ │ │ └── dropzone.js
│ │ │ ├── easy-pie-chart
│ │ │ │ └── dist
│ │ │ │ └── jquery.easypiechart.js
│ │ │ ├── fastclick
│ │ │ │ └── lib
│ │ │ │ └── fastclick.js
│ │ │ ├── flatdoc
│ │ │ │ └── flatdoc.js
│ │ │ ├── flot
│ │ │ │ ├── jquery.flot.categories.js
│ │ │ │ ├── jquery.flot.js
│ │ │ │ ├── jquery.flot.pie.js
│ │ │ │ ├── jquery.flot.resize.js
│ │ │ │ └── jquery.flot.time.js
│ │ │ ├── font-awesome
│ │ │ │ ├── css
│ │ │ │ │ └── font-awesome.css
│ │ │ │ └── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ └── fontawesome-webfont.woff2
│ │ │ ├── fullcalendar
│ │ │ │ └── dist
│ │ │ │ ├── fullcalendar.css
│ │ │ │ ├── fullcalendar.js
│ │ │ │ └── gcal.js
│ │ │ ├── html5sortable
│ │ │ │ └── dist
│ │ │ │ └── html.sortable.js
│ │ │ ├── ika.jvectormap
│ │ │ │ ├── jquery-jvectormap-1.2.2.css
│ │ │ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ │ │ ├── jquery-jvectormap-us-mill-en.js
│ │ │ │ └── jquery-jvectormap-world-mill-en.js
│ │ │ ├── inputmask
│ │ │ │ └── dist
│ │ │ │ └── jquery.inputmask.bundle.js
│ │ │ ├── jqcloud2
│ │ │ │ └── dist
│ │ │ │ ├── jqcloud.css
│ │ │ │ └── jqcloud.js
│ │ │ ├── jquery
│ │ │ │ └── dist
│ │ │ │ └── jquery.js
│ │ │ ├── jquery-bootgrid
│ │ │ │ └── dist
│ │ │ │ ├── jquery.bootgrid.css
│ │ │ │ ├── jquery.bootgrid.fa.js
│ │ │ │ └── jquery.bootgrid.js
│ │ │ ├── jquery.easing
│ │ │ │ └── jquery.easing.js
│ │ │ ├── jquery.flot.spline
│ │ │ │ └── jquery.flot.spline.js
│ │ │ ├── jquery.flot.tooltip
│ │ │ │ └── js
│ │ │ │ └── jquery.flot.tooltip.js
│ │ │ ├── jquery.gmap
│ │ │ │ └── jquery.gmap.js
│ │ │ ├── jquery-knob
│ │ │ │ └── dist
│ │ │ │ └── jquery.knob.min.js
│ │ │ ├── jquery-localize
│ │ │ │ └── dist
│ │ │ │ └── jquery.localize.js
│ │ │ ├── jquery-slimscroll
│ │ │ │ └── jquery.slimscroll.js
│ │ │ ├── jquery-sparkline
│ │ │ │ └── jquery.sparkline.js
│ │ │ ├── jquery-steps
│ │ │ │ └── build
│ │ │ │ └── jquery.steps.js
│ │ │ ├── jqueryui-touch-punch
│ │ │ │ └── jquery.ui.touch-punch.js
│ │ │ ├── jquery-validation
│ │ │ │ └── dist
│ │ │ │ ├── additional-methods.js
│ │ │ │ └── jquery.validate.js
│ │ │ ├── js-storage
│ │ │ │ └── js.storage.js
│ │ │ ├── loaders.css
│ │ │ │ └── loaders.css
│ │ │ ├── matchmedia
│ │ │ │ └── index.js
│ │ │ ├── modernizr
│ │ │ │ └── modernizr.custom.js
│ │ │ ├── moment
│ │ │ │ └── min
│ │ │ │ └── moment-with-locales.js
│ │ │ ├── morris.js.so
│ │ │ │ ├── morris.css
│ │ │ │ └── morris.js
│ │ │ ├── nestable
│ │ │ │ └── jquery.nestable.js
│ │ │ ├── parsleyjs
│ │ │ │ └── dist
│ │ │ │ └── parsley.js
│ │ │ ├── popper.js
│ │ │ │ └── dist
│ │ │ │ └── umd
│ │ │ │ └── popper.js
│ │ │ ├── raphael
│ │ │ │ └── raphael.js
│ │ │ ├── rickshaw
│ │ │ │ ├── rickshaw.css
│ │ │ │ └── rickshaw.js
│ │ │ ├── screenfull
│ │ │ │ └── dist
│ │ │ │ └── screenfull.js
│ │ │ ├── select2
│ │ │ │ └── dist
│ │ │ │ ├── css
│ │ │ │ │ └── select2.css
│ │ │ │ └── js
│ │ │ │ └── select2.full.js
│ │ │ ├── select2-bootstrap-theme
│ │ │ │ └── dist
│ │ │ │ └── select2-bootstrap.css
│ │ │ ├── simple-line-icons
│ │ │ │ ├── css
│ │ │ │ │ └── simple-line-icons.css
│ │ │ │ └── fonts
│ │ │ │ ├── Simple-Line-Icons.eot
│ │ │ │ ├── Simple-Line-Icons.svg
│ │ │ │ ├── Simple-Line-Icons.ttf
│ │ │ │ ├── Simple-Line-Icons.woff
│ │ │ │ └── Simple-Line-Icons.woff2
│ │ │ ├── spinkit
│ │ │ │ └── css
│ │ │ │ └── spinkit.css
│ │ │ ├── sweetalert
│ │ │ │ └── dist
│ │ │ │ ├── sweetalert.css
│ │ │ │ └── sweetalert.min.js
│ │ │ ├── weather-icons
│ │ │ │ ├── css
│ │ │ │ │ ├── weather-icons.css
│ │ │ │ │ └── weather-icons-wind.css
│ │ │ │ └── font
│ │ │ │ ├── weathericons-regular-webfont.eot
│ │ │ │ ├── weathericons-regular-webfont.svg
│ │ │ │ ├── weathericons-regular-webfont.ttf
│ │ │ │ ├── weathericons-regular-webfont.woff
│ │ │ │ └── weathericons-regular-webfont.woff2
│ │ │ ├── whirl
│ │ │ │ └── dist
│ │ │ │ └── whirl.css
│ │ │ └── x-editable
│ │ │ └── dist
│ │ │ └── bootstrap3-editable
│ │ │ ├── css
│ │ │ │ └── bootstrap-editable.css
│ │ │ ├── img
│ │ │ │ ├── clear.png
│ │ │ │ └── loading.gif
│ │ │ └── js
│ │ │ └── bootstrap-editable.js
│ │ ├── vote-links.html
│ │ └── widgets.html
│ ├── index.html
│ └── master
│ ├── gulpfile.js
│ ├── img
│ │ ├── bg10.jpg
│ │ ├── bg1.jpg
│ │ ├── bg2.jpg
│ │ ├── bg3.jpg
│ │ ├── bg4.jpg
│ │ ├── bg5.jpg
│ │ ├── bg6.jpg
│ │ ├── bg7.jpg
│ │ ├── bg8.jpg
│ │ ├── bg9.jpg
│ │ ├── dummy.png
│ │ ├── lock-bg.jpg
│ │ ├── logo.png
│ │ ├── logo-single.png
│ │ ├── mb-sample.jpg
│ │ ├── mockup.png
│ │ ├── profile-bg.jpg
│ │ └── user
│ │ ├── 01.jpg
│ │ ├── 02.jpg
│ │ ├── 03.jpg
│ │ ├── 04.jpg
│ │ ├── 05.jpg
│ │ ├── 06.jpg
│ │ ├── 07.jpg
│ │ ├── 08.jpg
│ │ ├── 09.jpg
│ │ ├── 10.jpg
│ │ ├── 11.jpg
│ │ ├── 12.jpg
│ │ └── 13.jpg
│ ├── js
│ │ ├── app.init.js
│ │ ├── custom
│ │ │ └── custom.js
│ │ └── modules
│ │ ├── charts
│ │ │ ├── chartist.js
│ │ │ ├── chart.js
│ │ │ ├── chart-knob.js
│ │ │ ├── easypiechart.js
│ │ │ ├── flot.js
│ │ │ ├── morris.js
│ │ │ ├── rickshaw.js
│ │ │ └── sparkline.js
│ │ ├── common
│ │ │ ├── bootstrap-start.js
│ │ │ ├── card-tools.js
│ │ │ ├── clear-storage.js
│ │ │ ├── constants.js
│ │ │ ├── fullscreen.js
│ │ │ ├── load-css.js
│ │ │ ├── localize.js
│ │ │ ├── navbar-search.js
│ │ │ ├── now.js
│ │ │ ├── rtl.js
│ │ │ ├── sidebar.js
│ │ │ ├── slimscroll.js
│ │ │ ├── table-checkall.js
│ │ │ ├── toggle-state.js
│ │ │ └── trigger-resize.js
│ │ ├── documentation
│ │ │ └── flatdoc.js
│ │ ├── elements
│ │ │ ├── cards.js
│ │ │ ├── nestable.js
│ │ │ ├── notify.js
│ │ │ ├── play-animation.js
│ │ │ ├── porlets.js
│ │ │ ├── sortable.js
│ │ │ └── sweetalert.js
│ │ ├── extras
│ │ │ ├── calendar.js
│ │ │ ├── jqcloud.js
│ │ │ └── search.js
│ │ ├── forms
│ │ │ ├── color-picker.js
│ │ │ ├── forms.js
│ │ │ ├── imagecrop.js
│ │ │ ├── select2.js
│ │ │ ├── upload.js
│ │ │ ├── wizard.js
│ │ │ └── xeditable.js
│ │ ├── maps
│ │ │ ├── gmap.js
│ │ │ ├── vector.map.demo.js
│ │ │ └── vector.map.js
│ │ ├── pages
│ │ │ └── pages.js
│ │ └── tables
│ │ ├── bootgrid.js
│ │ └── datatable.js
│ ├── modernizr-config.json
│ ├── package.json
│ ├── package-lock.json
│ ├── pug
│ │ ├── _layout_h.pug
│ │ ├── _layout_page.pug
│ │ ├── _layout.pug
│ │ └── views
│ │ ├── charts
│ │ │ ├── chart-chartist.pug
│ │ │ ├── chart-flot.pug
│ │ │ ├── chart-js.pug
│ │ │ ├── chart-morris.pug
│ │ │ ├── chart-radial.pug
│ │ │ └── chart-rickshaw.pug
│ │ ├── dashboard
│ │ │ ├── dashboard_h.pug
│ │ │ ├── dashboard.pug
│ │ │ ├── dashboard_v2.pug
│ │ │ └── dashboard_v3.pug
│ │ ├── documentation
│ │ │ └── documentation.pug
│ │ ├── elements
│ │ │ ├── animations.pug
│ │ │ ├── buttons.pug
│ │ │ ├── cards.pug
│ │ │ ├── carousel.pug
│ │ │ ├── colors.pug
│ │ │ ├── dropdown-animations.pug
│ │ │ ├── grid-masonry.pug
│ │ │ ├── grid.pug
│ │ │ ├── icons-font.pug
│ │ │ ├── icons-weather.pug
│ │ │ ├── nestable.pug
│ │ │ ├── notifications.pug
│ │ │ ├── portlets.pug
│ │ │ ├── sortable.pug
│ │ │ ├── spinners.pug
│ │ │ ├── sweetalert.pug
│ │ │ ├── template.pug
│ │ │ └── typo.pug
│ │ ├── extras
│ │ │ ├── blog-articles.pug
│ │ │ ├── blog-article-view.pug
│ │ │ ├── blog-post.pug
│ │ │ ├── blog.pug
│ │ │ ├── bug-tracker.pug
│ │ │ ├── calendar.pug
│ │ │ ├── contact-details.pug
│ │ │ ├── contacts.pug
│ │ │ ├── ecommerce-checkout.pug
│ │ │ ├── ecommerce-orders.pug
│ │ │ ├── ecommerce-order-view.pug
│ │ │ ├── ecommerce-products.pug
│ │ │ ├── ecommerce-product-view.pug
│ │ │ ├── faq.pug
│ │ │ ├── file-manager.pug
│ │ │ ├── followers.pug
│ │ │ ├── forum-categories.pug
│ │ │ ├── forum-discussion.pug
│ │ │ ├── forum-topics.pug
│ │ │ ├── help-center.pug
│ │ │ ├── invoice.pug
│ │ │ ├── mailbox.pug
│ │ │ ├── plans.pug
│ │ │ ├── profile.pug
│ │ │ ├── project-details.pug
│ │ │ ├── projects.pug
│ │ │ ├── search.pug
│ │ │ ├── settings.pug
│ │ │ ├── social-board.pug
│ │ │ ├── team-viewer.pug
│ │ │ ├── timeline.pug
│ │ │ ├── todo.pug
│ │ │ └── vote-links.pug
│ │ ├── forms
│ │ │ ├── form-extended.pug
│ │ │ ├── form-imagecrop.pug
│ │ │ ├── form-standard.pug
│ │ │ ├── form-upload.pug
│ │ │ ├── form-validation.pug
│ │ │ ├── form-wizard.pug
│ │ │ └── form-xeditable.pug
│ │ ├── maps
│ │ │ ├── maps-google.pug
│ │ │ └── maps-vector.pug
│ │ ├── multilevel
│ │ │ ├── multilevel-1.pug
│ │ │ └── multilevel-3.pug
│ │ ├── pages
│ │ │ ├── 404.pug
│ │ │ ├── 500.pug
│ │ │ ├── lock.pug
│ │ │ ├── login.pug
│ │ │ ├── maintenance.pug
│ │ │ ├── recover.pug
│ │ │ └── register.pug
│ │ ├── _partials
│ │ │ ├── _chat.pug
│ │ │ ├── _footer_page.pug
│ │ │ ├── _footer.pug
│ │ │ ├── _head.pug
│ │ │ ├── _offsidebar.pug
│ │ │ ├── _scripts.pug
│ │ │ ├── _settings.pug
│ │ │ ├── _sidebar.pug
│ │ │ ├── _top-navbar_h.pug
│ │ │ └── _top-navbar.pug
│ │ ├── tables
│ │ │ ├── table-bootgrid.pug
│ │ │ ├── table-datatable.pug
│ │ │ ├── table-extended.pug
│ │ │ └── table-standard.pug
│ │ └── widgets
│ │ └── widgets.pug
│ ├── sass
│ │ ├── app
│ │ │ ├── charts
│ │ │ │ ├── chart-easypie.scss
│ │ │ │ ├── chart-flot.scss
│ │ │ │ └── radial-bar.scss
│ │ │ ├── common
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-custom.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── cards.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── inputs.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── utils.scss
│ │ │ │ └── variables.scss
│ │ │ ├── documentation
│ │ │ │ └── docs.scss
│ │ │ ├── elements
│ │ │ │ ├── nestable.scss
│ │ │ │ ├── notify.scss
│ │ │ │ ├── portlets.scss
│ │ │ │ └── spinner.scss
│ │ │ ├── extras
│ │ │ │ ├── calendar.scss
│ │ │ │ ├── mailbox.scss
│ │ │ │ ├── plans.scss
│ │ │ │ ├── timeline.scss
│ │ │ │ └── todo.scss
│ │ │ ├── forms
│ │ │ │ ├── dropzone.scss
│ │ │ │ ├── form-datepicker.scss
│ │ │ │ ├── form-imgcrop.scss
│ │ │ │ ├── form-tags.scss
│ │ │ │ ├── form-validation.scss
│ │ │ │ ├── form-wizard.scss
│ │ │ │ └── plugins.scss
│ │ │ ├── layout
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ └── user-block.scss
│ │ │ ├── maps
│ │ │ │ ├── gmap.scss
│ │ │ │ └── vector-map.scss
│ │ │ └── tables
│ │ │ ├── bootgrid.scss
│ │ │ ├── datatable.scss
│ │ │ └── table-extras.scss
│ │ ├── app.scss
│ │ ├── bootstrap
│ │ │ ├── _alert.scss
│ │ │ ├── _badge.scss
│ │ │ ├── bootstrap-grid.scss
│ │ │ ├── bootstrap-reboot.scss
│ │ │ ├── bootstrap.scss
│ │ │ ├── _breadcrumb.scss
│ │ │ ├── _button-group.scss
│ │ │ ├── _buttons.scss
│ │ │ ├── _card.scss
│ │ │ ├── _carousel.scss
│ │ │ ├── _close.scss
│ │ │ ├── _code.scss
│ │ │ ├── _custom-forms.scss
│ │ │ ├── _dropdown.scss
│ │ │ ├── _forms.scss
│ │ │ ├── _functions.scss
│ │ │ ├── _grid.scss
│ │ │ ├── _images.scss
│ │ │ ├── _input-group.scss
│ │ │ ├── _jumbotron.scss
│ │ │ ├── _list-group.scss
│ │ │ ├── _media.scss
│ │ │ ├── mixins
│ │ │ │ ├── _alert.scss
│ │ │ │ ├── _background-variant.scss
│ │ │ │ ├── _badge.scss
│ │ │ │ ├── _border-radius.scss
│ │ │ │ ├── _box-shadow.scss
│ │ │ │ ├── _breakpoints.scss
│ │ │ │ ├── _buttons.scss
│ │ │ │ ├── _caret.scss
│ │ │ │ ├── _clearfix.scss
│ │ │ │ ├── _float.scss
│ │ │ │ ├── _forms.scss
│ │ │ │ ├── _gradients.scss
│ │ │ │ ├── _grid-framework.scss
│ │ │ │ ├── _grid.scss
│ │ │ │ ├── _hover.scss
│ │ │ │ ├── _image.scss
│ │ │ │ ├── _list-group.scss
│ │ │ │ ├── _lists.scss
│ │ │ │ ├── _navbar-align.scss
│ │ │ │ ├── _nav-divider.scss
│ │ │ │ ├── _pagination.scss
│ │ │ │ ├── _reset-text.scss
│ │ │ │ ├── _resize.scss
│ │ │ │ ├── _screen-reader.scss
│ │ │ │ ├── _size.scss
│ │ │ │ ├── _table-row.scss
│ │ │ │ ├── _text-emphasis.scss
│ │ │ │ ├── _text-hide.scss
│ │ │ │ ├── _text-truncate.scss
│ │ │ │ ├── _transition.scss
│ │ │ │ └── _visibility.scss
│ │ │ ├── _mixins.scss
│ │ │ ├── _modal.scss
│ │ │ ├── _navbar.scss
│ │ │ ├── _nav.scss
│ │ │ ├── _pagination.scss
│ │ │ ├── _popover.scss
│ │ │ ├── _print.scss
│ │ │ ├── _progress.scss
│ │ │ ├── _reboot.scss
│ │ │ ├── _root.scss
│ │ │ ├── _tables.scss
│ │ │ ├── _tooltip.scss
│ │ │ ├── _transitions.scss
│ │ │ ├── _type.scss
│ │ │ ├── utilities
│ │ │ │ ├── _align.scss
│ │ │ │ ├── _background.scss
│ │ │ │ ├── _borders.scss
│ │ │ │ ├── _clearfix.scss
│ │ │ │ ├── _display.scss
│ │ │ │ ├── _embed.scss
│ │ │ │ ├── _flex.scss
│ │ │ │ ├── _float.scss
│ │ │ │ ├── _position.scss
│ │ │ │ ├── _screenreaders.scss
│ │ │ │ ├── _sizing.scss
│ │ │ │ ├── _spacing.scss
│ │ │ │ ├── _text.scss
│ │ │ │ └── _visibility.scss
│ │ │ ├── _utilities.scss
│ │ │ └── _variables.scss
│ │ ├── bootstrap.scss
│ │ └── themes
│ │ ├── theme-a.scss
│ │ ├── theme-b.scss
│ │ ├── theme-c.scss
│ │ ├── theme-d.scss
│ │ ├── theme-e.scss
│ │ ├── theme-f.scss
│ │ ├── theme-g.scss
│ │ └── theme-h.scss
│ ├── server
│ │ ├── datatable.json
│ │ ├── documentation
│ │ │ └── readme.md
│ │ ├── i18n
│ │ │ ├── site-en.json
│ │ │ └── site-es.json
│ │ └── xeditable-groups.json
│ ├── sidebar.json
│ └── vendor.json
├── html5jquery-bs4-seed
│ ├── app
│ │ ├── css
│ │ │ ├── app.css
│ │ │ ├── app-rtl.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap-rtl.css
│ │ │ ├── theme-a.css
│ │ │ ├── theme-b.css
│ │ │ ├── theme-c.css
│ │ │ ├── theme-d.css
│ │ │ ├── theme-e.css
│ │ │ ├── theme-f.css
│ │ │ ├── theme-g.css
│ │ │ └── theme-h.css
│ │ ├── img
│ │ │ ├── bg10.jpg
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.jpg
│ │ │ ├── bg3.jpg
│ │ │ ├── bg4.jpg
│ │ │ ├── bg5.jpg
│ │ │ ├── bg6.jpg
│ │ │ ├── bg7.jpg
│ │ │ ├── bg8.jpg
│ │ │ ├── bg9.jpg
│ │ │ ├── dummy.png
│ │ │ ├── lock-bg.jpg
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ ├── mb-sample.jpg
│ │ │ ├── mockup.png
│ │ │ ├── profile-bg.jpg
│ │ │ └── user
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 04.jpg
│ │ │ ├── 05.jpg
│ │ │ ├── 06.jpg
│ │ │ ├── 07.jpg
│ │ │ ├── 08.jpg
│ │ │ ├── 09.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ └── 13.jpg
│ │ ├── js
│ │ │ └── app.js
│ │ ├── server
│ │ │ ├── datatable.json
│ │ │ ├── documentation
│ │ │ │ └── readme.md
│ │ │ ├── i18n
│ │ │ │ ├── site-en.json
│ │ │ │ └── site-es.json
│ │ │ └── xeditable-groups.json
│ │ ├── singleview.html
│ │ └── vendor
│ │ ├── animate.css
│ │ │ └── animate.css
│ │ ├── animo
│ │ │ └── animo.js
│ │ ├── bootstrap
│ │ │ └── dist
│ │ │ ├── css
│ │ │ │ └── bootstrap.css
│ │ │ └── js
│ │ │ └── bootstrap.js
│ │ ├── font-awesome
│ │ │ ├── css
│ │ │ │ └── font-awesome.css
│ │ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ ├── jquery
│ │ │ └── dist
│ │ │ └── jquery.js
│ │ ├── jquery.easing
│ │ │ └── jquery.easing.js
│ │ ├── jquery-localize
│ │ │ └── dist
│ │ │ └── jquery.localize.js
│ │ ├── js-storage
│ │ │ └── js.storage.js
│ │ ├── modernizr
│ │ │ └── modernizr.custom.js
│ │ ├── popper.js
│ │ │ └── dist
│ │ │ └── umd
│ │ │ └── popper.js
│ │ ├── screenfull
│ │ │ └── dist
│ │ │ └── screenfull.js
│ │ ├── simple-line-icons
│ │ │ ├── css
│ │ │ │ └── simple-line-icons.css
│ │ │ └── fonts
│ │ │ ├── Simple-Line-Icons.eot
│ │ │ ├── Simple-Line-Icons.svg
│ │ │ ├── Simple-Line-Icons.ttf
│ │ │ ├── Simple-Line-Icons.woff
│ │ │ └── Simple-Line-Icons.woff2
│ │ └── whirl
│ │ └── dist
│ │ └── whirl.css
│ ├── index.html
│ └── master
│ ├── gulpfile.js
│ ├── img
│ │ ├── bg10.jpg
│ │ ├── bg1.jpg
│ │ ├── bg2.jpg
│ │ ├── bg3.jpg
│ │ ├── bg4.jpg
│ │ ├── bg5.jpg
│ │ ├── bg6.jpg
│ │ ├── bg7.jpg
│ │ ├── bg8.jpg
│ │ ├── bg9.jpg
│ │ ├── dummy.png
│ │ ├── lock-bg.jpg
│ │ ├── logo.png
│ │ ├── logo-single.png
│ │ ├── mb-sample.jpg
│ │ ├── mockup.png
│ │ ├── profile-bg.jpg
│ │ └── user
│ │ ├── 01.jpg
│ │ ├── 02.jpg
│ │ ├── 03.jpg
│ │ ├── 04.jpg
│ │ ├── 05.jpg
│ │ ├── 06.jpg
│ │ ├── 07.jpg
│ │ ├── 08.jpg
│ │ ├── 09.jpg
│ │ ├── 10.jpg
│ │ ├── 11.jpg
│ │ ├── 12.jpg
│ │ └── 13.jpg
│ ├── js
│ │ ├── app.init.js
│ │ ├── custom
│ │ │ └── custom.js
│ │ └── modules
│ │ └── common
│ │ ├── bootstrap-start.js
│ │ ├── card-tools.js
│ │ ├── clear-storage.js
│ │ ├── constants.js
│ │ ├── fullscreen.js
│ │ ├── load-css.js
│ │ ├── localize.js
│ │ ├── navbar-search.js
│ │ ├── now.js
│ │ ├── rtl.js
│ │ ├── sidebar.js
│ │ ├── slimscroll.js
│ │ ├── table-checkall.js
│ │ ├── toggle-state.js
│ │ └── trigger-resize.js
│ ├── modernizr-config.json
│ ├── package.json
│ ├── package-lock.json
│ ├── pug
│ │ ├── _layout_h.pug
│ │ ├── _layout_page.pug
│ │ ├── _layout.pug
│ │ └── views
│ │ ├── _partials
│ │ │ ├── _chat.pug
│ │ │ ├── _footer_page.pug
│ │ │ ├── _footer.pug
│ │ │ ├── _head.pug
│ │ │ ├── _offsidebar.pug
│ │ │ ├── _scripts.pug
│ │ │ ├── _settings.pug
│ │ │ ├── _sidebar.pug
│ │ │ ├── _top-navbar_h.pug
│ │ │ └── _top-navbar.pug
│ │ └── singleview
│ │ └── singleview.pug
│ ├── sass
│ │ ├── app
│ │ │ ├── common
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-custom.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── cards.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── inputs.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── utils.scss
│ │ │ │ └── variables.scss
│ │ │ └── layout
│ │ │ ├── layout-animation.scss
│ │ │ ├── layout-extra.scss
│ │ │ ├── layout.scss
│ │ │ ├── offsidebar.scss
│ │ │ ├── settings.scss
│ │ │ ├── sidebar.scss
│ │ │ ├── top-navbar.scss
│ │ │ └── user-block.scss
│ │ ├── app.scss
│ │ ├── bootstrap
│ │ │ ├── _alert.scss
│ │ │ ├── _badge.scss
│ │ │ ├── bootstrap-grid.scss
│ │ │ ├── bootstrap-reboot.scss
│ │ │ ├── bootstrap.scss
│ │ │ ├── _breadcrumb.scss
│ │ │ ├── _button-group.scss
│ │ │ ├── _buttons.scss
│ │ │ ├── _card.scss
│ │ │ ├── _carousel.scss
│ │ │ ├── _close.scss
│ │ │ ├── _code.scss
│ │ │ ├── _custom-forms.scss
│ │ │ ├── _dropdown.scss
│ │ │ ├── _forms.scss
│ │ │ ├── _functions.scss
│ │ │ ├── _grid.scss
│ │ │ ├── _images.scss
│ │ │ ├── _input-group.scss
│ │ │ ├── _jumbotron.scss
│ │ │ ├── _list-group.scss
│ │ │ ├── _media.scss
│ │ │ ├── mixins
│ │ │ │ ├── _alert.scss
│ │ │ │ ├── _background-variant.scss
│ │ │ │ ├── _badge.scss
│ │ │ │ ├── _border-radius.scss
│ │ │ │ ├── _box-shadow.scss
│ │ │ │ ├── _breakpoints.scss
│ │ │ │ ├── _buttons.scss
│ │ │ │ ├── _caret.scss
│ │ │ │ ├── _clearfix.scss
│ │ │ │ ├── _float.scss
│ │ │ │ ├── _forms.scss
│ │ │ │ ├── _gradients.scss
│ │ │ │ ├── _grid-framework.scss
│ │ │ │ ├── _grid.scss
│ │ │ │ ├── _hover.scss
│ │ │ │ ├── _image.scss
│ │ │ │ ├── _list-group.scss
│ │ │ │ ├── _lists.scss
│ │ │ │ ├── _navbar-align.scss
│ │ │ │ ├── _nav-divider.scss
│ │ │ │ ├── _pagination.scss
│ │ │ │ ├── _reset-text.scss
│ │ │ │ ├── _resize.scss
│ │ │ │ ├── _screen-reader.scss
│ │ │ │ ├── _size.scss
│ │ │ │ ├── _table-row.scss
│ │ │ │ ├── _text-emphasis.scss
│ │ │ │ ├── _text-hide.scss
│ │ │ │ ├── _text-truncate.scss
│ │ │ │ ├── _transition.scss
│ │ │ │ └── _visibility.scss
│ │ │ ├── _mixins.scss
│ │ │ ├── _modal.scss
│ │ │ ├── _navbar.scss
│ │ │ ├── _nav.scss
│ │ │ ├── _pagination.scss
│ │ │ ├── _popover.scss
│ │ │ ├── _print.scss
│ │ │ ├── _progress.scss
│ │ │ ├── _reboot.scss
│ │ │ ├── _root.scss
│ │ │ ├── _tables.scss
│ │ │ ├── _tooltip.scss
│ │ │ ├── _transitions.scss
│ │ │ ├── _type.scss
│ │ │ ├── utilities
│ │ │ │ ├── _align.scss
│ │ │ │ ├── _background.scss
│ │ │ │ ├── _borders.scss
│ │ │ │ ├── _clearfix.scss
│ │ │ │ ├── _display.scss
│ │ │ │ ├── _embed.scss
│ │ │ │ ├── _flex.scss
│ │ │ │ ├── _float.scss
│ │ │ │ ├── _position.scss
│ │ │ │ ├── _screenreaders.scss
│ │ │ │ ├── _sizing.scss
│ │ │ │ ├── _spacing.scss
│ │ │ │ ├── _text.scss
│ │ │ │ └── _visibility.scss
│ │ │ ├── _utilities.scss
│ │ │ └── _variables.scss
│ │ ├── bootstrap.scss
│ │ └── themes
│ │ ├── theme-a.scss
│ │ ├── theme-b.scss
│ │ ├── theme-c.scss
│ │ ├── theme-d.scss
│ │ ├── theme-e.scss
│ │ ├── theme-f.scss
│ │ ├── theme-g.scss
│ │ └── theme-h.scss
│ ├── server
│ │ ├── datatable.json
│ │ ├── documentation
│ │ │ └── readme.md
│ │ ├── i18n
│ │ │ ├── site-en.json
│ │ │ └── site-es.json
│ │ └── xeditable-groups.json
│ ├── sidebar.json
│ └── vendor.json
├── material
│ └── ng2angle
│ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ ├── karma.conf.js
│ ├── modernizr-config.json
│ ├── package.json
│ ├── package-lock.json
│ ├── protractor.conf.js
│ ├── README.md
│ ├── src
│ │ ├── app
│ │ │ ├── app.component.html
│ │ │ ├── app.component.scss
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── core
│ │ │ │ ├── core.module.ts
│ │ │ │ ├── menu
│ │ │ │ │ ├── menu.service.spec.ts
│ │ │ │ │ └── menu.service.ts
│ │ │ │ ├── module-import-guard.ts
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.component.html
│ │ │ │ │ ├── preloader.js
│ │ │ │ │ └── preloader.scss
│ │ │ │ ├── settings
│ │ │ │ │ ├── settings.service.spec.ts
│ │ │ │ │ └── settings.service.ts
│ │ │ │ ├── themes
│ │ │ │ │ ├── themes.service.spec.ts
│ │ │ │ │ └── themes.service.ts
│ │ │ │ └── translator
│ │ │ │ ├── translator.service.spec.ts
│ │ │ │ └── translator.service.ts
│ │ │ ├── index.ts
│ │ │ ├── layout
│ │ │ │ ├── footer
│ │ │ │ │ ├── footer.component.html
│ │ │ │ │ ├── footer.component.scss
│ │ │ │ │ ├── footer.component.spec.ts
│ │ │ │ │ └── footer.component.ts
│ │ │ │ ├── header
│ │ │ │ │ ├── header.component.h.html
│ │ │ │ │ ├── header.component.html
│ │ │ │ │ ├── header.component.scss
│ │ │ │ │ ├── header.component.spec.ts
│ │ │ │ │ ├── header.component.ts
│ │ │ │ │ └── navsearch
│ │ │ │ │ ├── navsearch.component.html
│ │ │ │ │ ├── navsearch.component.scss
│ │ │ │ │ ├── navsearch.component.spec.ts
│ │ │ │ │ └── navsearch.component.ts
│ │ │ │ ├── layout.component.h.html
│ │ │ │ ├── layout.component.html
│ │ │ │ ├── layout.component.scss
│ │ │ │ ├── layout.component.spec.ts
│ │ │ │ ├── layout.component.ts
│ │ │ │ ├── layout.module.ts
│ │ │ │ ├── offsidebar
│ │ │ │ │ ├── offsidebar.component.html
│ │ │ │ │ ├── offsidebar.component.scss
│ │ │ │ │ ├── offsidebar.component.spec.ts
│ │ │ │ │ └── offsidebar.component.ts
│ │ │ │ └── sidebar
│ │ │ │ ├── sidebar.component.html
│ │ │ │ ├── sidebar.component.scss
│ │ │ │ ├── sidebar.component.spec.ts
│ │ │ │ ├── sidebar.component.ts
│ │ │ │ └── userblock
│ │ │ │ ├── userblock.component.html
│ │ │ │ ├── userblock.component.scss
│ │ │ │ ├── userblock.component.spec.ts
│ │ │ │ ├── userblock.component.ts
│ │ │ │ ├── userblock.service.spec.ts
│ │ │ │ └── userblock.service.ts
│ │ │ ├── routes
│ │ │ │ ├── blog
│ │ │ │ │ ├── articles
│ │ │ │ │ │ ├── articles.component.html
│ │ │ │ │ │ ├── articles.component.scss
│ │ │ │ │ │ └── articles.component.ts
│ │ │ │ │ ├── articleview
│ │ │ │ │ │ ├── articleview.component.html
│ │ │ │ │ │ ├── articleview.component.scss
│ │ │ │ │ │ └── articleview.component.ts
│ │ │ │ │ ├── blog.module.ts
│ │ │ │ │ ├── list
│ │ │ │ │ │ ├── list.component.html
│ │ │ │ │ │ ├── list.component.scss
│ │ │ │ │ │ └── list.component.ts
│ │ │ │ │ └── post
│ │ │ │ │ ├── post.component.html
│ │ │ │ │ ├── post.component.scss
│ │ │ │ │ └── post.component.ts
│ │ │ │ ├── charts
│ │ │ │ │ ├── chartjs
│ │ │ │ │ │ ├── chartjs.component.html
│ │ │ │ │ │ ├── chartjs.component.scss
│ │ │ │ │ │ └── chartjs.component.ts
│ │ │ │ │ ├── charts.module.ts
│ │ │ │ │ ├── flot
│ │ │ │ │ │ ├── flot.component.html
│ │ │ │ │ │ ├── flot.component.scss
│ │ │ │ │ │ └── flot.component.ts
│ │ │ │ │ └── radial
│ │ │ │ │ ├── radial.component.html
│ │ │ │ │ ├── radial.component.scss
│ │ │ │ │ └── radial.component.ts
│ │ │ │ ├── dashboard
│ │ │ │ │ ├── dashboard.module.ts
│ │ │ │ │ ├── dashboardv1
│ │ │ │ │ │ ├── dashboardv1.component.html
│ │ │ │ │ │ ├── dashboardv1.component.scss
│ │ │ │ │ │ └── dashboardv1.component.ts
│ │ │ │ │ ├── dashboardv2
│ │ │ │ │ │ ├── dashboardv2.component.html
│ │ │ │ │ │ ├── dashboardv2.component.scss
│ │ │ │ │ │ └── dashboardv2.component.ts
│ │ │ │ │ └── dashboardv3
│ │ │ │ │ ├── dashboardv3.component.html
│ │ │ │ │ ├── dashboardv3.component.scss
│ │ │ │ │ └── dashboardv3.component.ts
│ │ │ │ ├── ecommerce
│ │ │ │ │ ├── checkout
│ │ │ │ │ │ ├── checkout.component.html
│ │ │ │ │ │ ├── checkout.component.scss
│ │ │ │ │ │ └── checkout.component.ts
│ │ │ │ │ ├── ecommerce.module.ts
│ │ │ │ │ ├── orders
│ │ │ │ │ │ ├── orders.component.html
│ │ │ │ │ │ ├── orders.component.scss
│ │ │ │ │ │ └── orders.component.ts
│ │ │ │ │ ├── orderview
│ │ │ │ │ │ ├── orderview.component.html
│ │ │ │ │ │ ├── orderview.component.scss
│ │ │ │ │ │ └── orderview.component.ts
│ │ │ │ │ ├── products
│ │ │ │ │ │ ├── products.component.html
│ │ │ │ │ │ ├── products.component.scss
│ │ │ │ │ │ └── products.component.ts
│ │ │ │ │ └── productview
│ │ │ │ │ ├── productview.component.html
│ │ │ │ │ ├── productview.component.scss
│ │ │ │ │ └── productview.component.ts
│ │ │ │ ├── elements
│ │ │ │ │ ├── buttons
│ │ │ │ │ │ ├── buttons.component.html
│ │ │ │ │ │ ├── buttons.component.scss
│ │ │ │ │ │ ├── buttons.component.spec.ts
│ │ │ │ │ │ └── buttons.component.ts
│ │ │ │ │ ├── colors
│ │ │ │ │ │ ├── colors.component.html
│ │ │ │ │ │ ├── colors.component.scss
│ │ │ │ │ │ ├── colors.component.spec.ts
│ │ │ │ │ │ └── colors.component.ts
│ │ │ │ │ ├── dropdown
│ │ │ │ │ │ ├── dropdown.component.html
│ │ │ │ │ │ ├── dropdown.component.scss
│ │ │ │ │ │ ├── dropdown.component.spec.ts
│ │ │ │ │ │ └── dropdown.component.ts
│ │ │ │ │ ├── elements.module.ts
│ │ │ │ │ ├── grid
│ │ │ │ │ │ ├── grid.component.html
│ │ │ │ │ │ ├── grid.component.scss
│ │ │ │ │ │ ├── grid.component.spec.ts
│ │ │ │ │ │ └── grid.component.ts
│ │ │ │ │ ├── gridmasonry
│ │ │ │ │ │ ├── gridmasonry.component.html
│ │ │ │ │ │ ├── gridmasonry.component.scss
│ │ │ │ │ │ ├── gridmasonry.component.spec.ts
│ │ │ │ │ │ └── gridmasonry.component.ts
│ │ │ │ │ ├── iconsfont
│ │ │ │ │ │ ├── iconsfont.component.html
│ │ │ │ │ │ ├── iconsfont.component.scss
│ │ │ │ │ │ ├── iconsfont.component.spec.ts
│ │ │ │ │ │ └── iconsfont.component.ts
│ │ │ │ │ ├── iconsweather
│ │ │ │ │ │ ├── iconsweather.component.html
│ │ │ │ │ │ ├── iconsweather.component.scss
│ │ │ │ │ │ ├── iconsweather.component.spec.ts
│ │ │ │ │ │ └── iconsweather.component.ts
│ │ │ │ │ ├── infinitescroll
│ │ │ │ │ │ ├── infinitescroll.component.html
│ │ │ │ │ │ ├── infinitescroll.component.scss
│ │ │ │ │ │ └── infinitescroll.component.ts
│ │ │ │ │ ├── interaction
│ │ │ │ │ │ ├── interaction.component.html
│ │ │ │ │ │ ├── interaction.component.scss
│ │ │ │ │ │ ├── interaction.component.spec.ts
│ │ │ │ │ │ └── interaction.component.ts
│ │ │ │ │ ├── navtree
│ │ │ │ │ │ ├── navtree.component.html
│ │ │ │ │ │ ├── navtree.component.scss
│ │ │ │ │ │ └── navtree.component.ts
│ │ │ │ │ ├── notification
│ │ │ │ │ │ ├── notification.component.html
│ │ │ │ │ │ ├── notification.component.scss
│ │ │ │ │ │ └── notification.component.ts
│ │ │ │ │ ├── sortable
│ │ │ │ │ │ ├── sortable.component.html
│ │ │ │ │ │ ├── sortable.component.scss
│ │ │ │ │ │ ├── sortable.component.ts
│ │ │ │ │ │ └── sortable.product.ts
│ │ │ │ │ ├── spinners
│ │ │ │ │ │ ├── spinners.component.html
│ │ │ │ │ │ ├── spinners.component.scss
│ │ │ │ │ │ ├── spinners.component.spec.ts
│ │ │ │ │ │ └── spinners.component.ts
│ │ │ │ │ ├── sweetalert
│ │ │ │ │ │ ├── sweetalert.component.html
│ │ │ │ │ │ ├── sweetalert.component.scss
│ │ │ │ │ │ ├── sweetalert.component.spec.ts
│ │ │ │ │ │ └── sweetalert.component.ts
│ │ │ │ │ └── typography
│ │ │ │ │ ├── typography.component.html
│ │ │ │ │ ├── typography.component.scss
│ │ │ │ │ ├── typography.component.spec.ts
│ │ │ │ │ └── typography.component.ts
│ │ │ │ ├── extras
│ │ │ │ │ ├── bugtracker
│ │ │ │ │ │ ├── bugtracker.component.html
│ │ │ │ │ │ ├── bugtracker.component.scss
│ │ │ │ │ │ └── bugtracker.component.ts
│ │ │ │ │ ├── calendar
│ │ │ │ │ │ ├── calendar.component.html
│ │ │ │ │ │ ├── calendar.component.scss
│ │ │ │ │ │ └── calendar.component.ts
│ │ │ │ │ ├── codeeditor
│ │ │ │ │ │ ├── codeeditor.component.html
│ │ │ │ │ │ ├── codeeditor.component.scss
│ │ │ │ │ │ └── codeeditor.component.ts
│ │ │ │ │ ├── contactdetails
│ │ │ │ │ │ ├── contactdetails.component.html
│ │ │ │ │ │ ├── contactdetails.component.scss
│ │ │ │ │ │ └── contactdetails.component.ts
│ │ │ │ │ ├── contacts
│ │ │ │ │ │ ├── contacts.component.html
│ │ │ │ │ │ ├── contacts.component.scss
│ │ │ │ │ │ └── contacts.component.ts
│ │ │ │ │ ├── extras.module.ts
│ │ │ │ │ ├── faq
│ │ │ │ │ │ ├── faq.component.html
│ │ │ │ │ │ ├── faq.component.scss
│ │ │ │ │ │ └── faq.component.ts
│ │ │ │ │ ├── filemanager
│ │ │ │ │ │ ├── filemanager.component.html
│ │ │ │ │ │ ├── filemanager.component.scss
│ │ │ │ │ │ └── filemanager.component.ts
│ │ │ │ │ ├── followers
│ │ │ │ │ │ ├── followers.component.html
│ │ │ │ │ │ ├── followers.component.scss
│ │ │ │ │ │ └── followers.component.ts
│ │ │ │ │ ├── forum
│ │ │ │ │ │ ├── forum.component.html
│ │ │ │ │ │ ├── forum.component.scss
│ │ │ │ │ │ ├── forum.component.ts
│ │ │ │ │ │ ├── forumdiscussion
│ │ │ │ │ │ │ ├── forumdiscussion.component.html
│ │ │ │ │ │ │ ├── forumdiscussion.component.scss
│ │ │ │ │ │ │ └── forumdiscussion.component.ts
│ │ │ │ │ │ └── forumtopics
│ │ │ │ │ │ ├── forumtopics.component.html
│ │ │ │ │ │ ├── forumtopics.component.scss
│ │ │ │ │ │ └── forumtopics.component.ts
│ │ │ │ │ ├── helpcenter
│ │ │ │ │ │ ├── helpcenter.component.html
│ │ │ │ │ │ ├── helpcenter.component.scss
│ │ │ │ │ │ └── helpcenter.component.ts
│ │ │ │ │ ├── invoice
│ │ │ │ │ │ ├── invoice.component.html
│ │ │ │ │ │ ├── invoice.component.scss
│ │ │ │ │ │ └── invoice.component.ts
│ │ │ │ │ ├── mailbox
│ │ │ │ │ │ ├── compose
│ │ │ │ │ │ │ ├── compose.component.html
│ │ │ │ │ │ │ ├── compose.component.scss
│ │ │ │ │ │ │ └── compose.component.ts
│ │ │ │ │ │ ├── folder
│ │ │ │ │ │ │ ├── folder.component.html
│ │ │ │ │ │ │ ├── folder.component.scss
│ │ │ │ │ │ │ └── folder.component.ts
│ │ │ │ │ │ ├── mailbox.component.html
│ │ │ │ │ │ ├── mailbox.component.scss
│ │ │ │ │ │ ├── mailbox.component.ts
│ │ │ │ │ │ └── view
│ │ │ │ │ │ ├── view.component.html
│ │ │ │ │ │ ├── view.component.scss
│ │ │ │ │ │ └── view.component.ts
│ │ │ │ │ ├── plans
│ │ │ │ │ │ ├── plans.component.html
│ │ │ │ │ │ ├── plans.component.scss
│ │ │ │ │ │ └── plans.component.ts
│ │ │ │ │ ├── profile
│ │ │ │ │ │ ├── profile.component.html
│ │ │ │ │ │ ├── profile.component.scss
│ │ │ │ │ │ └── profile.component.ts
│ │ │ │ │ ├── projects
│ │ │ │ │ │ ├── projects.component.html
│ │ │ │ │ │ ├── projects.component.scss
│ │ │ │ │ │ └── projects.component.ts
│ │ │ │ │ ├── projectsdetails
│ │ │ │ │ │ ├── projectsdetails.component.html
│ │ │ │ │ │ ├── projectsdetails.component.scss
│ │ │ │ │ │ └── projectsdetails.component.ts
│ │ │ │ │ ├── search
│ │ │ │ │ │ ├── search.component.html
│ │ │ │ │ │ ├── search.component.scss
│ │ │ │ │ │ └── search.component.ts
│ │ │ │ │ ├── settings
│ │ │ │ │ │ ├── settings.component.html
│ │ │ │ │ │ ├── settings.component.scss
│ │ │ │ │ │ └── settings.component.ts
│ │ │ │ │ ├── socialboard
│ │ │ │ │ │ ├── socialboard.component.html
│ │ │ │ │ │ ├── socialboard.component.scss
│ │ │ │ │ │ └── socialboard.component.ts
│ │ │ │ │ ├── teamviewer
│ │ │ │ │ │ ├── teamviewer.component.html
│ │ │ │ │ │ ├── teamviewer.component.scss
│ │ │ │ │ │ └── teamviewer.component.ts
│ │ │ │ │ ├── timeline
│ │ │ │ │ │ ├── timeline.component.html
│ │ │ │ │ │ ├── timeline.component.scss
│ │ │ │ │ │ └── timeline.component.ts
│ │ │ │ │ ├── todolist
│ │ │ │ │ │ ├── todolist.component.html
│ │ │ │ │ │ ├── todolist.component.scss
│ │ │ │ │ │ └── todolist.component.ts
│ │ │ │ │ └── votelinks
│ │ │ │ │ ├── votelinks.component.html
│ │ │ │ │ ├── votelinks.component.scss
│ │ │ │ │ └── votelinks.component.ts
│ │ │ │ ├── forms
│ │ │ │ │ ├── cropper
│ │ │ │ │ │ ├── cropper.component.html
│ │ │ │ │ │ ├── cropper.component.scss
│ │ │ │ │ │ └── cropper.component.ts
│ │ │ │ │ ├── extended
│ │ │ │ │ │ ├── extended.component.html
│ │ │ │ │ │ ├── extended.component.scss
│ │ │ │ │ │ └── extended.component.ts
│ │ │ │ │ ├── forms.module.ts
│ │ │ │ │ ├── standard
│ │ │ │ │ │ ├── standard.component.html
│ │ │ │ │ │ ├── standard.component.scss
│ │ │ │ │ │ └── standard.component.ts
│ │ │ │ │ ├── upload
│ │ │ │ │ │ ├── upload.component.html
│ │ │ │ │ │ ├── upload.component.scss
│ │ │ │ │ │ └── upload.component.ts
│ │ │ │ │ └── validation
│ │ │ │ │ ├── validation.component.html
│ │ │ │ │ ├── validation.component.scss
│ │ │ │ │ └── validation.component.ts
│ │ │ │ ├── home
│ │ │ │ │ ├── home
│ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ ├── home.component.spec.ts
│ │ │ │ │ │ └── home.component.ts
│ │ │ │ │ └── home.module.ts
│ │ │ │ ├── maps
│ │ │ │ │ │ ├── google.component.html
│ │ │ │ │ │ ├── google.component.scss
│ │ │ │ │ │ └── google.component.ts
│ │ │ │ │ ├── maps.module.ts
│ │ │ │ │ └── vector
│ │ │ │ │ ├── vector.component.html
│ │ │ │ │ ├── vector.component.scss
│ │ │ │ │ └── vector.component.ts
│ │ │ │ ├── material
│ │ │ │ │ ├── cards
│ │ │ │ │ │ ├── cards.component.html
│ │ │ │ │ │ ├── cards.component.scss
│ │ │ │ │ │ └── cards.component.ts
│ │ │ │ │ ├── colors
│ │ │ │ │ │ ├── colors.component.html
│ │ │ │ │ │ ├── colors.component.scss
│ │ │ │ │ │ └── colors.component.ts
│ │ │ │ │ ├── forms
│ │ │ │ │ │ ├── forms.component.html
│ │ │ │ │ │ ├── forms.component.scss
│ │ │ │ │ │ └── forms.component.ts
│ │ │ │ │ ├── inputs
│ │ │ │ │ │ ├── inputs.component.html
│ │ │ │ │ │ ├── inputs.component.scss
│ │ │ │ │ │ └── inputs.component.ts
│ │ │ │ │ ├── lists
│ │ │ │ │ │ ├── lists.component.html
│ │ │ │ │ │ ├── lists.component.scss
│ │ │ │ │ │ └── lists.component.ts
│ │ │ │ │ ├── material.module.ts
│ │ │ │ │ ├── ngmaterial
│ │ │ │ │ │ ├── dialog.component.ts
│ │ │ │ │ │ ├── ngmaterial.component.html
│ │ │ │ │ │ ├── ngmaterial.component.scss
│ │ │ │ │ │ ├── ngmaterial.component.ts
│ │ │ │ │ │ └── snackbar.component.ts
│ │ │ │ │ ├── whiteframe
│ │ │ │ │ │ ├── whiteframe.component.html
│ │ │ │ │ │ ├── whiteframe.component.scss
│ │ │ │ │ │ └── whiteframe.component.ts
│ │ │ │ │ └── widgets
│ │ │ │ │ ├── widgets.component.html
│ │ │ │ │ ├── widgets.component.scss
│ │ │ │ │ └── widgets.component.ts
│ │ │ │ ├── menu.ts
│ │ │ │ ├── pages
│ │ │ │ │ ├── error404
│ │ │ │ │ │ ├── error404.component.html
│ │ │ │ │ │ ├── error404.component.scss
│ │ │ │ │ │ └── error404.component.ts
│ │ │ │ │ ├── error500
│ │ │ │ │ │ ├── error500.component.html
│ │ │ │ │ │ ├── error500.component.scss
│ │ │ │ │ │ └── error500.component.ts
│ │ │ │ │ ├── lock
│ │ │ │ │ │ ├── lock.component.html
│ │ │ │ │ │ ├── lock.component.scss
│ │ │ │ │ │ └── lock.component.ts
│ │ │ │ │ ├── login
│ │ │ │ │ │ ├── login.component.html
│ │ │ │ │ │ ├── login.component.scss
│ │ │ │ │ │ └── login.component.ts
│ │ │ │ │ ├── maintenance
│ │ │ │ │ │ ├── maintenance.component.html
│ │ │ │ │ │ ├── maintenance.component.scss
│ │ │ │ │ │ └── maintenance.component.ts
│ │ │ │ │ ├── pages.module.ts
│ │ │ │ │ ├── recover
│ │ │ │ │ │ ├── recover.component.html
│ │ │ │ │ │ ├── recover.component.scss
│ │ │ │ │ │ └── recover.component.ts
│ │ │ │ │ └── register
│ │ │ │ │ ├── register.component.html
│ │ │ │ │ ├── register.component.scss
│ │ │ │ │ └── register.component.ts
│ │ │ │ ├── routes.module.ts
│ │ │ │ ├── routes.ts
│ │ │ │ ├── tables
│ │ │ │ │ ├── angulargrid
│ │ │ │ │ │ ├── angulargrid.component.html
│ │ │ │ │ │ ├── angulargrid.component.scss
│ │ │ │ │ │ └── angulargrid.component.ts
│ │ │ │ │ ├── datatable
│ │ │ │ │ │ ├── datatable.component.html
│ │ │ │ │ │ ├── datatable.component.scss
│ │ │ │ │ │ ├── datatable.component.ts
│ │ │ │ │ │ └── ng2-table-data.ts
│ │ │ │ │ ├── extended
│ │ │ │ │ │ ├── extended.component.html
│ │ │ │ │ │ ├── extended.component.scss
│ │ │ │ │ │ └── extended.component.ts
│ │ │ │ │ ├── ngxdatatable
│ │ │ │ │ │ ├── ngxdatatable.component.html
│ │ │ │ │ │ ├── ngxdatatable.component.scss
│ │ │ │ │ │ └── ngxdatatable.component.ts
│ │ │ │ │ ├── standard
│ │ │ │ │ │ ├── standard.component.html
│ │ │ │ │ │ ├── standard.component.scss
│ │ │ │ │ │ └── standard.component.ts
│ │ │ │ │ └── tables.module.ts
│ │ │ │ └── widgets
│ │ │ │ ├── widgets
│ │ │ │ │ ├── widgets.component.html
│ │ │ │ │ ├── widgets.component.scss
│ │ │ │ │ └── widgets.component.ts
│ │ │ │ └── widgets.module.ts
│ │ │ └── shared
│ │ │ ├── colors
│ │ │ │ └── colors.service.ts
│ │ │ ├── directives
│ │ │ │ ├── checkall
│ │ │ │ │ └── checkall.directive.ts
│ │ │ │ ├── easypiechart
│ │ │ │ │ └── easypiechart.directive.ts
│ │ │ │ ├── flot
│ │ │ │ │ └── flot.directive.ts
│ │ │ │ ├── jqcloud
│ │ │ │ │ └── jqcloud.directive.ts
│ │ │ │ ├── now
│ │ │ │ │ └── now.directive.ts
│ │ │ │ ├── scrollable
│ │ │ │ │ └── scrollable.directive.ts
│ │ │ │ ├── sparkline
│ │ │ │ │ └── sparkline.directive.ts
│ │ │ │ └── vectormap
│ │ │ │ └── vectormap.directive.ts
│ │ │ ├── shared.module.ts
│ │ │ └── styles
│ │ │ ├── app
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── breadcrumbs.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── calendar.scss
│ │ │ │ ├── chart-easypie.scss
│ │ │ │ ├── chart-flot.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── code-editor.scss
│ │ │ │ ├── datepicker.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── file-upload.scss
│ │ │ │ ├── form-elements.scss
│ │ │ │ ├── gmap.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── loading-bar.scss
│ │ │ │ ├── mailbox.scss
│ │ │ │ ├── masonry-grid.scss
│ │ │ │ ├── material
│ │ │ │ │ ├── cards.scss
│ │ │ │ │ ├── colors.scss
│ │ │ │ │ ├── md-forms.scss
│ │ │ │ │ ├── md-inputs.scss
│ │ │ │ │ ├── md-list.scss
│ │ │ │ │ ├── ngmaterial.scss
│ │ │ │ │ └── welcome.scss
│ │ │ │ ├── media-queries.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── panels.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── plans.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── progress-extra.scss
│ │ │ │ ├── radial-bar.scss
│ │ │ │ ├── row-extra.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── spinner.scss
│ │ │ │ ├── summernote.scss
│ │ │ │ ├── table-angulargrid.scss
│ │ │ │ ├── table-extras.scss
│ │ │ │ ├── table-grid.scss
│ │ │ │ ├── timeline.scss
│ │ │ │ ├── todo.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typeahead.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── user-block.scss
│ │ │ │ ├── utils-definitions.scss
│ │ │ │ ├── utils.scss
│ │ │ │ ├── variables.scss
│ │ │ │ ├── vector-map.scss
│ │ │ │ └── widget.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _badges.scss
│ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ ├── _close.scss
│ │ │ │ │ ├── _code.scss
│ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _media.scss
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modals.scss
│ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ ├── _navs.scss
│ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ ├── _pager.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ ├── _print.scss
│ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _tables.scss
│ │ │ │ │ ├── _theme.scss
│ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ ├── _variables.scss
│ │ │ │ │ └── _wells.scss
│ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ ├── _bootstrap.scss
│ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ ├── assets
│ │ │ ├── codemirror
│ │ │ │ ├── filetree.json
│ │ │ │ ├── mode
│ │ │ │ │ ├── apl
│ │ │ │ │ │ └── apl.js
│ │ │ │ │ ├── asciiarmor
│ │ │ │ │ │ └── asciiarmor.js
│ │ │ │ │ ├── asn.1
│ │ │ │ │ │ └── asn.1.js
│ │ │ │ │ ├── asterisk
│ │ │ │ │ │ └── asterisk.js
│ │ │ │ │ ├── brainfuck
│ │ │ │ │ │ └── brainfuck.js
│ │ │ │ │ ├── clike
│ │ │ │ │ │ └── clike.js
│ │ │ │ │ ├── clojure
│ │ │ │ │ │ └── clojure.js
│ │ │ │ │ ├── cmake
│ │ │ │ │ │ └── cmake.js
│ │ │ │ │ ├── cobol
│ │ │ │ │ │ └── cobol.js
│ │ │ │ │ ├── coffeescript
│ │ │ │ │ │ └── coffeescript.js
│ │ │ │ │ ├── commonlisp
│ │ │ │ │ │ └── commonlisp.js
│ │ │ │ │ ├── crystal
│ │ │ │ │ │ └── crystal.js
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── css.js
│ │ │ │ │ ├── cypher
│ │ │ │ │ │ └── cypher.js
│ │ │ │ │ ├── d
│ │ │ │ │ │ └── d.js
│ │ │ │ │ ├── dart
│ │ │ │ │ │ └── dart.js
│ │ │ │ │ ├── diff
│ │ │ │ │ │ └── diff.js
│ │ │ │ │ ├── django
│ │ │ │ │ │ └── django.js
│ │ │ │ │ ├── dockerfile
│ │ │ │ │ │ └── dockerfile.js
│ │ │ │ │ ├── dtd
│ │ │ │ │ │ └── dtd.js
│ │ │ │ │ ├── dylan
│ │ │ │ │ │ └── dylan.js
│ │ │ │ │ ├── ebnf
│ │ │ │ │ │ └── ebnf.js
│ │ │ │ │ ├── ecl
│ │ │ │ │ │ └── ecl.js
│ │ │ │ │ ├── eiffel
│ │ │ │ │ │ └── eiffel.js
│ │ │ │ │ ├── elm
│ │ │ │ │ │ └── elm.js
│ │ │ │ │ ├── erlang
│ │ │ │ │ │ └── erlang.js
│ │ │ │ │ ├── factor
│ │ │ │ │ │ └── factor.js
│ │ │ │ │ ├── fcl
│ │ │ │ │ │ └── fcl.js
│ │ │ │ │ ├── forth
│ │ │ │ │ │ └── forth.js
│ │ │ │ │ ├── fortran
│ │ │ │ │ │ └── fortran.js
│ │ │ │ │ ├── gas
│ │ │ │ │ │ └── gas.js
│ │ │ │ │ ├── gfm
│ │ │ │ │ │ └── gfm.js
│ │ │ │ │ ├── gherkin
│ │ │ │ │ │ └── gherkin.js
│ │ │ │ │ ├── go
│ │ │ │ │ │ └── go.js
│ │ │ │ │ ├── groovy
│ │ │ │ │ │ └── groovy.js
│ │ │ │ │ ├── haml
│ │ │ │ │ │ └── haml.js
│ │ │ │ │ ├── handlebars
│ │ │ │ │ │ └── handlebars.js
│ │ │ │ │ ├── haskell
│ │ │ │ │ │ └── haskell.js
│ │ │ │ │ ├── haskell-literate
│ │ │ │ │ │ └── haskell-literate.js
│ │ │ │ │ ├── haxe
│ │ │ │ │ │ └── haxe.js
│ │ │ │ │ ├── htmlembedded
│ │ │ │ │ │ └── htmlembedded.js
│ │ │ │ │ ├── htmlmixed
│ │ │ │ │ │ └── htmlmixed.js
│ │ │ │ │ ├── http
│ │ │ │ │ │ └── http.js
│ │ │ │ │ ├── idl
│ │ │ │ │ │ └── idl.js
│ │ │ │ │ ├── javascript
│ │ │ │ │ │ └── javascript.js
│ │ │ │ │ ├── jinja2
│ │ │ │ │ │ └── jinja2.js
│ │ │ │ │ ├── jsx
│ │ │ │ │ │ └── jsx.js
│ │ │ │ │ ├── julia
│ │ │ │ │ │ └── julia.js
│ │ │ │ │ ├── livescript
│ │ │ │ │ │ └── livescript.js
│ │ │ │ │ ├── lua
│ │ │ │ │ │ └── lua.js
│ │ │ │ │ ├── markdown
│ │ │ │ │ │ └── markdown.js
│ │ │ │ │ ├── mathematica
│ │ │ │ │ │ └── mathematica.js
│ │ │ │ │ ├── mbox
│ │ │ │ │ │ └── mbox.js
│ │ │ │ │ ├── meta.js
│ │ │ │ │ ├── mirc
│ │ │ │ │ │ └── mirc.js
│ │ │ │ │ ├── mllike
│ │ │ │ │ │ └── mllike.js
│ │ │ │ │ ├── modelica
│ │ │ │ │ │ └── modelica.js
│ │ │ │ │ ├── mscgen
│ │ │ │ │ │ └── mscgen.js
│ │ │ │ │ ├── mumps
│ │ │ │ │ │ └── mumps.js
│ │ │ │ │ ├── nginx
│ │ │ │ │ │ └── nginx.js
│ │ │ │ │ ├── nsis
│ │ │ │ │ │ └── nsis.js
│ │ │ │ │ ├── ntriples
│ │ │ │ │ │ └── ntriples.js
│ │ │ │ │ ├── octave
│ │ │ │ │ │ └── octave.js
│ │ │ │ │ ├── oz
│ │ │ │ │ │ └── oz.js
│ │ │ │ │ ├── pascal
│ │ │ │ │ │ └── pascal.js
│ │ │ │ │ ├── pegjs
│ │ │ │ │ │ └── pegjs.js
│ │ │ │ │ ├── perl
│ │ │ │ │ │ └── perl.js
│ │ │ │ │ ├── php
│ │ │ │ │ │ └── php.js
│ │ │ │ │ ├── pig
│ │ │ │ │ │ └── pig.js
│ │ │ │ │ ├── powershell
│ │ │ │ │ │ └── powershell.js
│ │ │ │ │ ├── properties
│ │ │ │ │ │ └── properties.js
│ │ │ │ │ ├── protobuf
│ │ │ │ │ │ └── protobuf.js
│ │ │ │ │ ├── pug
│ │ │ │ │ │ └── pug.js
│ │ │ │ │ ├── puppet
│ │ │ │ │ │ └── puppet.js
│ │ │ │ │ ├── python
│ │ │ │ │ │ └── python.js
│ │ │ │ │ ├── q
│ │ │ │ │ │ └── q.js
│ │ │ │ │ ├── r
│ │ │ │ │ │ └── r.js
│ │ │ │ │ ├── rpm
│ │ │ │ │ │ ├── changes
│ │ │ │ │ │ │ └── index.html
│ │ │ │ │ │ └── rpm.js
│ │ │ │ │ ├── rst
│ │ │ │ │ │ └── rst.js
│ │ │ │ │ ├── ruby
│ │ │ │ │ │ └── ruby.js
│ │ │ │ │ ├── rust
│ │ │ │ │ │ └── rust.js
│ │ │ │ │ ├── sas
│ │ │ │ │ │ └── sas.js
│ │ │ │ │ ├── sass
│ │ │ │ │ │ └── sass.js
│ │ │ │ │ ├── scheme
│ │ │ │ │ │ └── scheme.js
│ │ │ │ │ ├── shell
│ │ │ │ │ │ └── shell.js
│ │ │ │ │ ├── sieve
│ │ │ │ │ │ └── sieve.js
│ │ │ │ │ ├── slim
│ │ │ │ │ │ └── slim.js
│ │ │ │ │ ├── smalltalk
│ │ │ │ │ │ └── smalltalk.js
│ │ │ │ │ ├── smarty
│ │ │ │ │ │ └── smarty.js
│ │ │ │ │ ├── solr
│ │ │ │ │ │ └── solr.js
│ │ │ │ │ ├── soy
│ │ │ │ │ │ └── soy.js
│ │ │ │ │ ├── sparql
│ │ │ │ │ │ └── sparql.js
│ │ │ │ │ ├── spreadsheet
│ │ │ │ │ │ └── spreadsheet.js
│ │ │ │ │ ├── sql
│ │ │ │ │ │ └── sql.js
│ │ │ │ │ ├── stex
│ │ │ │ │ │ └── stex.js
│ │ │ │ │ ├── stylus
│ │ │ │ │ │ └── stylus.js
│ │ │ │ │ ├── swift
│ │ │ │ │ │ └── swift.js
│ │ │ │ │ ├── tcl
│ │ │ │ │ │ └── tcl.js
│ │ │ │ │ ├── textile
│ │ │ │ │ │ └── textile.js
│ │ │ │ │ ├── tiddlywiki
│ │ │ │ │ │ ├── tiddlywiki.css
│ │ │ │ │ │ └── tiddlywiki.js
│ │ │ │ │ ├── tiki
│ │ │ │ │ │ ├── tiki.css
│ │ │ │ │ │ └── tiki.js
│ │ │ │ │ ├── toml
│ │ │ │ │ │ └── toml.js
│ │ │ │ │ ├── tornado
│ │ │ │ │ │ └── tornado.js
│ │ │ │ │ ├── troff
│ │ │ │ │ │ └── troff.js
│ │ │ │ │ ├── ttcn
│ │ │ │ │ │ └── ttcn.js
│ │ │ │ │ ├── ttcn-cfg
│ │ │ │ │ │ └── ttcn-cfg.js
│ │ │ │ │ ├── turtle
│ │ │ │ │ │ └── turtle.js
│ │ │ │ │ ├── twig
│ │ │ │ │ │ └── twig.js
│ │ │ │ │ ├── vb
│ │ │ │ │ │ └── vb.js
│ │ │ │ │ ├── vbscript
│ │ │ │ │ │ └── vbscript.js
│ │ │ │ │ ├── velocity
│ │ │ │ │ │ └── velocity.js
│ │ │ │ │ ├── verilog
│ │ │ │ │ │ └── verilog.js
│ │ │ │ │ ├── vhdl
│ │ │ │ │ │ └── vhdl.js
│ │ │ │ │ ├── vue
│ │ │ │ │ │ └── vue.js
│ │ │ │ │ ├── webidl
│ │ │ │ │ │ └── webidl.js
│ │ │ │ │ ├── xml
│ │ │ │ │ │ └── xml.js
│ │ │ │ │ ├── xquery
│ │ │ │ │ │ └── xquery.js
│ │ │ │ │ ├── yacas
│ │ │ │ │ │ └── yacas.js
│ │ │ │ │ ├── yaml
│ │ │ │ │ │ └── yaml.js
│ │ │ │ │ ├── yaml-frontmatter
│ │ │ │ │ │ └── yaml-frontmatter.js
│ │ │ │ │ └── z80
│ │ │ │ │ └── z80.js
│ │ │ │ ├── source
│ │ │ │ │ ├── another.html
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── style.css
│ │ │ │ │ └── index.html
│ │ │ │ └── theme
│ │ │ │ ├── 3024-day.css
│ │ │ │ ├── 3024-night.css
│ │ │ │ ├── abcdef.css
│ │ │ │ ├── ambiance.css
│ │ │ │ ├── ambiance-mobile.css
│ │ │ │ ├── base16-dark.css
│ │ │ │ ├── base16-light.css
│ │ │ │ ├── bespin.css
│ │ │ │ ├── blackboard.css
│ │ │ │ ├── cobalt.css
│ │ │ │ ├── colorforth.css
│ │ │ │ ├── dracula.css
│ │ │ │ ├── duotone-dark.css
│ │ │ │ ├── duotone-light.css
│ │ │ │ ├── eclipse.css
│ │ │ │ ├── elegant.css
│ │ │ │ ├── erlang-dark.css
│ │ │ │ ├── hopscotch.css
│ │ │ │ ├── icecoder.css
│ │ │ │ ├── isotope.css
│ │ │ │ ├── lesser-dark.css
│ │ │ │ ├── liquibyte.css
│ │ │ │ ├── material.css
│ │ │ │ ├── mbo.css
│ │ │ │ ├── mdn-like.css
│ │ │ │ ├── midnight.css
│ │ │ │ ├── monokai.css
│ │ │ │ ├── neat.css
│ │ │ │ ├── neo.css
│ │ │ │ ├── night.css
│ │ │ │ ├── panda-syntax.css
│ │ │ │ ├── paraiso-dark.css
│ │ │ │ ├── paraiso-light.css
│ │ │ │ ├── pastel-on-dark.css
│ │ │ │ ├── railscasts.css
│ │ │ │ ├── rubyblue.css
│ │ │ │ ├── seti.css
│ │ │ │ ├── solarized.css
│ │ │ │ ├── the-matrix.css
│ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ ├── ttcn.css
│ │ │ │ ├── twilight.css
│ │ │ │ ├── vibrant-ink.css
│ │ │ │ ├── xq-dark.css
│ │ │ │ ├── xq-light.css
│ │ │ │ ├── yeti.css
│ │ │ │ └── zenburn.css
│ │ │ ├── company.json
│ │ │ ├── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── es_AR.json
│ │ │ ├── img
│ │ │ │ ├── angular.svg
│ │ │ │ ├── bg10.jpg
│ │ │ │ ├── bg1.jpg
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── bg3.jpg
│ │ │ │ ├── bg4.jpg
│ │ │ │ ├── bg5.jpg
│ │ │ │ ├── bg6.jpg
│ │ │ │ ├── bg7.jpg
│ │ │ │ ├── bg8.jpg
│ │ │ │ ├── bg9.jpg
│ │ │ │ ├── dummy.png
│ │ │ │ ├── icons
│ │ │ │ │ ├── copy2.svg
│ │ │ │ │ ├── copy.svg
│ │ │ │ │ ├── facebook.svg
│ │ │ │ │ ├── hangout.svg
│ │ │ │ │ ├── ic_close_24px.svg
│ │ │ │ │ ├── ic_refresh_24px.svg
│ │ │ │ │ ├── mail.svg
│ │ │ │ │ ├── message.svg
│ │ │ │ │ ├── print.svg
│ │ │ │ │ ├── share-arrow.svg
│ │ │ │ │ ├── twitter.svg
│ │ │ │ │ └── upload.svg
│ │ │ │ ├── lock-bg.jpg
│ │ │ │ ├── logo.png
│ │ │ │ ├── logo-single.png
│ │ │ │ ├── mangues.jpg
│ │ │ │ ├── mb-sample.jpg
│ │ │ │ ├── mockup.png
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.empty.png
│ │ │ │ │ └── preloader.full.png
│ │ │ │ ├── profile-bg.jpg
│ │ │ │ ├── user
│ │ │ │ │ ├── 01.jpg
│ │ │ │ │ ├── 02.jpg
│ │ │ │ │ ├── 03.jpg
│ │ │ │ │ ├── 04.jpg
│ │ │ │ │ ├── 05.jpg
│ │ │ │ │ ├── 06.jpg
│ │ │ │ │ ├── 07.jpg
│ │ │ │ │ ├── 08.jpg
│ │ │ │ │ ├── 09.jpg
│ │ │ │ │ ├── 10.jpg
│ │ │ │ │ ├── 11.jpg
│ │ │ │ │ ├── 12.jpg
│ │ │ │ │ └── 13.jpg
│ │ │ │ ├── user-bg.jpg
│ │ │ │ ├── welcome.jpg
│ │ │ │ └── welcome.showcase.png
│ │ │ └── server
│ │ │ ├── ag-owinners.json
│ │ │ ├── chart
│ │ │ │ ├── area.json
│ │ │ │ ├── bar.json
│ │ │ │ ├── barstacked.json
│ │ │ │ ├── barstackedv2.json
│ │ │ │ ├── donut.json
│ │ │ │ ├── line.json
│ │ │ │ ├── pie.json
│ │ │ │ ├── realtime.json
│ │ │ │ ├── spline.json
│ │ │ │ ├── splinev2.json
│ │ │ │ └── splinev3.json
│ │ │ └── mails.json
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── modernizr.js
│ │ ├── polyfills.ts
│ │ ├── styles.scss
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ ├── typings.d.ts
│ │ └── vendor.ts
│ ├── tsconfig.json
│ └── tslint.json
├── material-seed
│ └── ng2angle
│ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ ├── karma.conf.js
│ ├── modernizr-config.json
│ ├── package.json
│ ├── package-lock.json
│ ├── protractor.conf.js
│ ├── README.md
│ ├── src
│ │ ├── app
│ │ │ ├── app.component.html
│ │ │ ├── app.component.scss
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── core
│ │ │ │ ├── core.module.ts
│ │ │ │ ├── menu
│ │ │ │ │ ├── menu.service.spec.ts
│ │ │ │ │ └── menu.service.ts
│ │ │ │ ├── module-import-guard.ts
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.component.html
│ │ │ │ │ ├── preloader.js
│ │ │ │ │ └── preloader.scss
│ │ │ │ ├── settings
│ │ │ │ │ ├── settings.service.spec.ts
│ │ │ │ │ └── settings.service.ts
│ │ │ │ ├── themes
│ │ │ │ │ ├── themes.service.spec.ts
│ │ │ │ │ └── themes.service.ts
│ │ │ │ └── translator
│ │ │ │ ├── translator.service.spec.ts
│ │ │ │ └── translator.service.ts
│ │ │ ├── index.ts
│ │ │ ├── layout
│ │ │ │ ├── footer
│ │ │ │ │ ├── footer.component.html
│ │ │ │ │ ├── footer.component.scss
│ │ │ │ │ ├── footer.component.spec.ts
│ │ │ │ │ └── footer.component.ts
│ │ │ │ ├── header
│ │ │ │ │ ├── header.component.h.html
│ │ │ │ │ ├── header.component.html
│ │ │ │ │ ├── header.component.scss
│ │ │ │ │ ├── header.component.spec.ts
│ │ │ │ │ ├── header.component.ts
│ │ │ │ │ └── navsearch
│ │ │ │ │ ├── navsearch.component.html
│ │ │ │ │ ├── navsearch.component.scss
│ │ │ │ │ ├── navsearch.component.spec.ts
│ │ │ │ │ └── navsearch.component.ts
│ │ │ │ ├── layout.component.h.html
│ │ │ │ ├── layout.component.html
│ │ │ │ ├── layout.component.scss
│ │ │ │ ├── layout.component.spec.ts
│ │ │ │ ├── layout.component.ts
│ │ │ │ ├── layout.module.ts
│ │ │ │ ├── offsidebar
│ │ │ │ │ ├── offsidebar.component.html
│ │ │ │ │ ├── offsidebar.component.scss
│ │ │ │ │ ├── offsidebar.component.spec.ts
│ │ │ │ │ └── offsidebar.component.ts
│ │ │ │ └── sidebar
│ │ │ │ ├── sidebar.component.html
│ │ │ │ ├── sidebar.component.scss
│ │ │ │ ├── sidebar.component.spec.ts
│ │ │ │ ├── sidebar.component.ts
│ │ │ │ └── userblock
│ │ │ │ ├── userblock.component.html
│ │ │ │ ├── userblock.component.scss
│ │ │ │ ├── userblock.component.spec.ts
│ │ │ │ ├── userblock.component.ts
│ │ │ │ ├── userblock.service.spec.ts
│ │ │ │ └── userblock.service.ts
│ │ │ ├── routes
│ │ │ │ ├── home
│ │ │ │ │ ├── home
│ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ ├── home.component.spec.ts
│ │ │ │ │ │ └── home.component.ts
│ │ │ │ │ └── home.module.ts
│ │ │ │ ├── material
│ │ │ │ │ ├── cards
│ │ │ │ │ │ ├── cards.component.html
│ │ │ │ │ │ ├── cards.component.scss
│ │ │ │ │ │ └── cards.component.ts
│ │ │ │ │ ├── colors
│ │ │ │ │ │ ├── colors.component.html
│ │ │ │ │ │ ├── colors.component.scss
│ │ │ │ │ │ └── colors.component.ts
│ │ │ │ │ ├── forms
│ │ │ │ │ │ ├── forms.component.html
│ │ │ │ │ │ ├── forms.component.scss
│ │ │ │ │ │ └── forms.component.ts
│ │ │ │ │ ├── inputs
│ │ │ │ │ │ ├── inputs.component.html
│ │ │ │ │ │ ├── inputs.component.scss
│ │ │ │ │ │ └── inputs.component.ts
│ │ │ │ │ ├── lists
│ │ │ │ │ │ ├── lists.component.html
│ │ │ │ │ │ ├── lists.component.scss
│ │ │ │ │ │ └── lists.component.ts
│ │ │ │ │ ├── material.module.ts
│ │ │ │ │ ├── ngmaterial
│ │ │ │ │ │ ├── dialog.component.ts
│ │ │ │ │ │ ├── ngmaterial.component.html
│ │ │ │ │ │ ├── ngmaterial.component.scss
│ │ │ │ │ │ ├── ngmaterial.component.ts
│ │ │ │ │ │ └── snackbar.component.ts
│ │ │ │ │ ├── whiteframe
│ │ │ │ │ │ ├── whiteframe.component.html
│ │ │ │ │ │ ├── whiteframe.component.scss
│ │ │ │ │ │ └── whiteframe.component.ts
│ │ │ │ │ └── widgets
│ │ │ │ │ ├── widgets.component.html
│ │ │ │ │ ├── widgets.component.scss
│ │ │ │ │ └── widgets.component.ts
│ │ │ │ ├── menu.ts
│ │ │ │ ├── routes.module.ts
│ │ │ │ └── routes.ts
│ │ │ └── shared
│ │ │ ├── colors
│ │ │ │ └── colors.service.ts
│ │ │ ├── directives
│ │ │ │ ├── checkall
│ │ │ │ │ └── checkall.directive.ts
│ │ │ │ ├── easypiechart
│ │ │ │ │ └── easypiechart.directive.ts
│ │ │ │ ├── flot
│ │ │ │ │ └── flot.directive.ts
│ │ │ │ ├── jqcloud
│ │ │ │ │ └── jqcloud.directive.ts
│ │ │ │ ├── now
│ │ │ │ │ └── now.directive.ts
│ │ │ │ ├── scrollable
│ │ │ │ │ └── scrollable.directive.ts
│ │ │ │ ├── sparkline
│ │ │ │ │ └── sparkline.directive.ts
│ │ │ │ └── vectormap
│ │ │ │ └── vectormap.directive.ts
│ │ │ ├── shared.module.ts
│ │ │ └── styles
│ │ │ ├── app
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── breadcrumbs.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── datepicker.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── form-elements.scss
│ │ │ │ ├── gmap.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── loading-bar.scss
│ │ │ │ ├── material
│ │ │ │ │ ├── cards.scss
│ │ │ │ │ ├── colors.scss
│ │ │ │ │ ├── md-forms.scss
│ │ │ │ │ ├── md-inputs.scss
│ │ │ │ │ ├── md-list.scss
│ │ │ │ │ ├── ngmaterial.scss
│ │ │ │ │ └── welcome.scss
│ │ │ │ ├── media-queries.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── panels.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── progress-extra.scss
│ │ │ │ ├── row-extra.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── table-extras.scss
│ │ │ │ ├── table-grid.scss
│ │ │ │ ├── todo.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── user-block.scss
│ │ │ │ ├── utils-definitions.scss
│ │ │ │ ├── utils.scss
│ │ │ │ ├── variables.scss
│ │ │ │ └── widget.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _badges.scss
│ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ ├── _close.scss
│ │ │ │ │ ├── _code.scss
│ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _media.scss
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modals.scss
│ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ ├── _navs.scss
│ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ ├── _pager.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ ├── _print.scss
│ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _tables.scss
│ │ │ │ │ ├── _theme.scss
│ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ ├── _variables.scss
│ │ │ │ │ └── _wells.scss
│ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ ├── _bootstrap.scss
│ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ ├── assets
│ │ │ ├── codemirror
│ │ │ │ ├── filetree.json
│ │ │ │ ├── mode
│ │ │ │ │ ├── apl
│ │ │ │ │ │ └── apl.js
│ │ │ │ │ ├── asciiarmor
│ │ │ │ │ │ └── asciiarmor.js
│ │ │ │ │ ├── asn.1
│ │ │ │ │ │ └── asn.1.js
│ │ │ │ │ ├── asterisk
│ │ │ │ │ │ └── asterisk.js
│ │ │ │ │ ├── brainfuck
│ │ │ │ │ │ └── brainfuck.js
│ │ │ │ │ ├── clike
│ │ │ │ │ │ └── clike.js
│ │ │ │ │ ├── clojure
│ │ │ │ │ │ └── clojure.js
│ │ │ │ │ ├── cmake
│ │ │ │ │ │ └── cmake.js
│ │ │ │ │ ├── cobol
│ │ │ │ │ │ └── cobol.js
│ │ │ │ │ ├── coffeescript
│ │ │ │ │ │ └── coffeescript.js
│ │ │ │ │ ├── commonlisp
│ │ │ │ │ │ └── commonlisp.js
│ │ │ │ │ ├── crystal
│ │ │ │ │ │ └── crystal.js
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── css.js
│ │ │ │ │ ├── cypher
│ │ │ │ │ │ └── cypher.js
│ │ │ │ │ ├── d
│ │ │ │ │ │ └── d.js
│ │ │ │ │ ├── dart
│ │ │ │ │ │ └── dart.js
│ │ │ │ │ ├── diff
│ │ │ │ │ │ └── diff.js
│ │ │ │ │ ├── django
│ │ │ │ │ │ └── django.js
│ │ │ │ │ ├── dockerfile
│ │ │ │ │ │ └── dockerfile.js
│ │ │ │ │ ├── dtd
│ │ │ │ │ │ └── dtd.js
│ │ │ │ │ ├── dylan
│ │ │ │ │ │ └── dylan.js
│ │ │ │ │ ├── ebnf
│ │ │ │ │ │ └── ebnf.js
│ │ │ │ │ ├── ecl
│ │ │ │ │ │ └── ecl.js
│ │ │ │ │ ├── eiffel
│ │ │ │ │ │ └── eiffel.js
│ │ │ │ │ ├── elm
│ │ │ │ │ │ └── elm.js
│ │ │ │ │ ├── erlang
│ │ │ │ │ │ └── erlang.js
│ │ │ │ │ ├── factor
│ │ │ │ │ │ └── factor.js
│ │ │ │ │ ├── fcl
│ │ │ │ │ │ └── fcl.js
│ │ │ │ │ ├── forth
│ │ │ │ │ │ └── forth.js
│ │ │ │ │ ├── fortran
│ │ │ │ │ │ └── fortran.js
│ │ │ │ │ ├── gas
│ │ │ │ │ │ └── gas.js
│ │ │ │ │ ├── gfm
│ │ │ │ │ │ └── gfm.js
│ │ │ │ │ ├── gherkin
│ │ │ │ │ │ └── gherkin.js
│ │ │ │ │ ├── go
│ │ │ │ │ │ └── go.js
│ │ │ │ │ ├── groovy
│ │ │ │ │ │ └── groovy.js
│ │ │ │ │ ├── haml
│ │ │ │ │ │ └── haml.js
│ │ │ │ │ ├── handlebars
│ │ │ │ │ │ └── handlebars.js
│ │ │ │ │ ├── haskell
│ │ │ │ │ │ └── haskell.js
│ │ │ │ │ ├── haskell-literate
│ │ │ │ │ │ └── haskell-literate.js
│ │ │ │ │ ├── haxe
│ │ │ │ │ │ └── haxe.js
│ │ │ │ │ ├── htmlembedded
│ │ │ │ │ │ └── htmlembedded.js
│ │ │ │ │ ├── htmlmixed
│ │ │ │ │ │ └── htmlmixed.js
│ │ │ │ │ ├── http
│ │ │ │ │ │ └── http.js
│ │ │ │ │ ├── idl
│ │ │ │ │ │ └── idl.js
│ │ │ │ │ ├── javascript
│ │ │ │ │ │ └── javascript.js
│ │ │ │ │ ├── jinja2
│ │ │ │ │ │ └── jinja2.js
│ │ │ │ │ ├── jsx
│ │ │ │ │ │ └── jsx.js
│ │ │ │ │ ├── julia
│ │ │ │ │ │ └── julia.js
│ │ │ │ │ ├── livescript
│ │ │ │ │ │ └── livescript.js
│ │ │ │ │ ├── lua
│ │ │ │ │ │ └── lua.js
│ │ │ │ │ ├── markdown
│ │ │ │ │ │ └── markdown.js
│ │ │ │ │ ├── mathematica
│ │ │ │ │ │ └── mathematica.js
│ │ │ │ │ ├── mbox
│ │ │ │ │ │ └── mbox.js
│ │ │ │ │ ├── meta.js
│ │ │ │ │ ├── mirc
│ │ │ │ │ │ └── mirc.js
│ │ │ │ │ ├── mllike
│ │ │ │ │ │ └── mllike.js
│ │ │ │ │ ├── modelica
│ │ │ │ │ │ └── modelica.js
│ │ │ │ │ ├── mscgen
│ │ │ │ │ │ └── mscgen.js
│ │ │ │ │ ├── mumps
│ │ │ │ │ │ └── mumps.js
│ │ │ │ │ ├── nginx
│ │ │ │ │ │ └── nginx.js
│ │ │ │ │ ├── nsis
│ │ │ │ │ │ └── nsis.js
│ │ │ │ │ ├── ntriples
│ │ │ │ │ │ └── ntriples.js
│ │ │ │ │ ├── octave
│ │ │ │ │ │ └── octave.js
│ │ │ │ │ ├── oz
│ │ │ │ │ │ └── oz.js
│ │ │ │ │ ├── pascal
│ │ │ │ │ │ └── pascal.js
│ │ │ │ │ ├── pegjs
│ │ │ │ │ │ └── pegjs.js
│ │ │ │ │ ├── perl
│ │ │ │ │ │ └── perl.js
│ │ │ │ │ ├── php
│ │ │ │ │ │ └── php.js
│ │ │ │ │ ├── pig
│ │ │ │ │ │ └── pig.js
│ │ │ │ │ ├── powershell
│ │ │ │ │ │ └── powershell.js
│ │ │ │ │ ├── properties
│ │ │ │ │ │ └── properties.js
│ │ │ │ │ ├── protobuf
│ │ │ │ │ │ └── protobuf.js
│ │ │ │ │ ├── pug
│ │ │ │ │ │ └── pug.js
│ │ │ │ │ ├── puppet
│ │ │ │ │ │ └── puppet.js
│ │ │ │ │ ├── python
│ │ │ │ │ │ └── python.js
│ │ │ │ │ ├── q
│ │ │ │ │ │ └── q.js
│ │ │ │ │ ├── r
│ │ │ │ │ │ └── r.js
│ │ │ │ │ ├── rpm
│ │ │ │ │ │ ├── changes
│ │ │ │ │ │ │ └── index.html
│ │ │ │ │ │ └── rpm.js
│ │ │ │ │ ├── rst
│ │ │ │ │ │ └── rst.js
│ │ │ │ │ ├── ruby
│ │ │ │ │ │ └── ruby.js
│ │ │ │ │ ├── rust
│ │ │ │ │ │ └── rust.js
│ │ │ │ │ ├── sas
│ │ │ │ │ │ └── sas.js
│ │ │ │ │ ├── sass
│ │ │ │ │ │ └── sass.js
│ │ │ │ │ ├── scheme
│ │ │ │ │ │ └── scheme.js
│ │ │ │ │ ├── shell
│ │ │ │ │ │ └── shell.js
│ │ │ │ │ ├── sieve
│ │ │ │ │ │ └── sieve.js
│ │ │ │ │ ├── slim
│ │ │ │ │ │ └── slim.js
│ │ │ │ │ ├── smalltalk
│ │ │ │ │ │ └── smalltalk.js
│ │ │ │ │ ├── smarty
│ │ │ │ │ │ └── smarty.js
│ │ │ │ │ ├── solr
│ │ │ │ │ │ └── solr.js
│ │ │ │ │ ├── soy
│ │ │ │ │ │ └── soy.js
│ │ │ │ │ ├── sparql
│ │ │ │ │ │ └── sparql.js
│ │ │ │ │ ├── spreadsheet
│ │ │ │ │ │ └── spreadsheet.js
│ │ │ │ │ ├── sql
│ │ │ │ │ │ └── sql.js
│ │ │ │ │ ├── stex
│ │ │ │ │ │ └── stex.js
│ │ │ │ │ ├── stylus
│ │ │ │ │ │ └── stylus.js
│ │ │ │ │ ├── swift
│ │ │ │ │ │ └── swift.js
│ │ │ │ │ ├── tcl
│ │ │ │ │ │ └── tcl.js
│ │ │ │ │ ├── textile
│ │ │ │ │ │ └── textile.js
│ │ │ │ │ ├── tiddlywiki
│ │ │ │ │ │ ├── tiddlywiki.css
│ │ │ │ │ │ └── tiddlywiki.js
│ │ │ │ │ ├── tiki
│ │ │ │ │ │ ├── tiki.css
│ │ │ │ │ │ └── tiki.js
│ │ │ │ │ ├── toml
│ │ │ │ │ │ └── toml.js
│ │ │ │ │ ├── tornado
│ │ │ │ │ │ └── tornado.js
│ │ │ │ │ ├── troff
│ │ │ │ │ │ └── troff.js
│ │ │ │ │ ├── ttcn
│ │ │ │ │ │ └── ttcn.js
│ │ │ │ │ ├── ttcn-cfg
│ │ │ │ │ │ └── ttcn-cfg.js
│ │ │ │ │ ├── turtle
│ │ │ │ │ │ └── turtle.js
│ │ │ │ │ ├── twig
│ │ │ │ │ │ └── twig.js
│ │ │ │ │ ├── vb
│ │ │ │ │ │ └── vb.js
│ │ │ │ │ ├── vbscript
│ │ │ │ │ │ └── vbscript.js
│ │ │ │ │ ├── velocity
│ │ │ │ │ │ └── velocity.js
│ │ │ │ │ ├── verilog
│ │ │ │ │ │ └── verilog.js
│ │ │ │ │ ├── vhdl
│ │ │ │ │ │ └── vhdl.js
│ │ │ │ │ ├── vue
│ │ │ │ │ │ └── vue.js
│ │ │ │ │ ├── webidl
│ │ │ │ │ │ └── webidl.js
│ │ │ │ │ ├── xml
│ │ │ │ │ │ └── xml.js
│ │ │ │ │ ├── xquery
│ │ │ │ │ │ └── xquery.js
│ │ │ │ │ ├── yacas
│ │ │ │ │ │ └── yacas.js
│ │ │ │ │ ├── yaml
│ │ │ │ │ │ └── yaml.js
│ │ │ │ │ ├── yaml-frontmatter
│ │ │ │ │ │ └── yaml-frontmatter.js
│ │ │ │ │ └── z80
│ │ │ │ │ └── z80.js
│ │ │ │ ├── source
│ │ │ │ │ ├── another.html
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── style.css
│ │ │ │ │ └── index.html
│ │ │ │ └── theme
│ │ │ │ ├── 3024-day.css
│ │ │ │ ├── 3024-night.css
│ │ │ │ ├── abcdef.css
│ │ │ │ ├── ambiance.css
│ │ │ │ ├── ambiance-mobile.css
│ │ │ │ ├── base16-dark.css
│ │ │ │ ├── base16-light.css
│ │ │ │ ├── bespin.css
│ │ │ │ ├── blackboard.css
│ │ │ │ ├── cobalt.css
│ │ │ │ ├── colorforth.css
│ │ │ │ ├── dracula.css
│ │ │ │ ├── duotone-dark.css
│ │ │ │ ├── duotone-light.css
│ │ │ │ ├── eclipse.css
│ │ │ │ ├── elegant.css
│ │ │ │ ├── erlang-dark.css
│ │ │ │ ├── hopscotch.css
│ │ │ │ ├── icecoder.css
│ │ │ │ ├── isotope.css
│ │ │ │ ├── lesser-dark.css
│ │ │ │ ├── liquibyte.css
│ │ │ │ ├── material.css
│ │ │ │ ├── mbo.css
│ │ │ │ ├── mdn-like.css
│ │ │ │ ├── midnight.css
│ │ │ │ ├── monokai.css
│ │ │ │ ├── neat.css
│ │ │ │ ├── neo.css
│ │ │ │ ├── night.css
│ │ │ │ ├── panda-syntax.css
│ │ │ │ ├── paraiso-dark.css
│ │ │ │ ├── paraiso-light.css
│ │ │ │ ├── pastel-on-dark.css
│ │ │ │ ├── railscasts.css
│ │ │ │ ├── rubyblue.css
│ │ │ │ ├── seti.css
│ │ │ │ ├── solarized.css
│ │ │ │ ├── the-matrix.css
│ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ ├── ttcn.css
│ │ │ │ ├── twilight.css
│ │ │ │ ├── vibrant-ink.css
│ │ │ │ ├── xq-dark.css
│ │ │ │ ├── xq-light.css
│ │ │ │ ├── yeti.css
│ │ │ │ └── zenburn.css
│ │ │ ├── company.json
│ │ │ ├── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── es_AR.json
│ │ │ ├── img
│ │ │ │ ├── angular.svg
│ │ │ │ ├── bg10.jpg
│ │ │ │ ├── bg1.jpg
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── bg3.jpg
│ │ │ │ ├── bg4.jpg
│ │ │ │ ├── bg5.jpg
│ │ │ │ ├── bg6.jpg
│ │ │ │ ├── bg7.jpg
│ │ │ │ ├── bg8.jpg
│ │ │ │ ├── bg9.jpg
│ │ │ │ ├── dummy.png
│ │ │ │ ├── icons
│ │ │ │ │ ├── copy2.svg
│ │ │ │ │ ├── copy.svg
│ │ │ │ │ ├── facebook.svg
│ │ │ │ │ ├── hangout.svg
│ │ │ │ │ ├── ic_close_24px.svg
│ │ │ │ │ ├── ic_refresh_24px.svg
│ │ │ │ │ ├── mail.svg
│ │ │ │ │ ├── message.svg
│ │ │ │ │ ├── print.svg
│ │ │ │ │ ├── share-arrow.svg
│ │ │ │ │ ├── twitter.svg
│ │ │ │ │ └── upload.svg
│ │ │ │ ├── lock-bg.jpg
│ │ │ │ ├── logo.png
│ │ │ │ ├── logo-single.png
│ │ │ │ ├── mangues.jpg
│ │ │ │ ├── mb-sample.jpg
│ │ │ │ ├── mockup.png
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.empty.png
│ │ │ │ │ └── preloader.full.png
│ │ │ │ ├── profile-bg.jpg
│ │ │ │ ├── user
│ │ │ │ │ ├── 01.jpg
│ │ │ │ │ ├── 02.jpg
│ │ │ │ │ ├── 03.jpg
│ │ │ │ │ ├── 04.jpg
│ │ │ │ │ ├── 05.jpg
│ │ │ │ │ ├── 06.jpg
│ │ │ │ │ ├── 07.jpg
│ │ │ │ │ ├── 08.jpg
│ │ │ │ │ ├── 09.jpg
│ │ │ │ │ ├── 10.jpg
│ │ │ │ │ ├── 11.jpg
│ │ │ │ │ ├── 12.jpg
│ │ │ │ │ └── 13.jpg
│ │ │ │ ├── user-bg.jpg
│ │ │ │ ├── welcome.jpg
│ │ │ │ └── welcome.showcase.png
│ │ │ └── server
│ │ │ ├── ag-owinners.json
│ │ │ ├── chart
│ │ │ │ ├── area.json
│ │ │ │ ├── bar.json
│ │ │ │ ├── barstacked.json
│ │ │ │ ├── barstackedv2.json
│ │ │ │ ├── donut.json
│ │ │ │ ├── line.json
│ │ │ │ ├── pie.json
│ │ │ │ ├── realtime.json
│ │ │ │ ├── spline.json
│ │ │ │ ├── splinev2.json
│ │ │ │ └── splinev3.json
│ │ │ └── mails.json
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── modernizr.js
│ │ ├── polyfills.ts
│ │ ├── styles.scss
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ ├── typings.d.ts
│ │ └── vendor.ts
│ ├── tsconfig.json
│ └── tslint.json
├── meanjs
│ ├── bower.json
│ ├── CHANGELOG.md
│ ├── config
│ │ ├── assets
│ │ │ ├── cloud-foundry.js
│ │ │ ├── default.js
│ │ │ ├── development.js
│ │ │ ├── production.js
│ │ │ └── test.js
│ │ ├── config.js
│ │ ├── env
│ │ │ ├── cloud-foundry.js
│ │ │ ├── default.js
│ │ │ ├── development.js
│ │ │ ├── local.example.js
│ │ │ ├── production.js
│ │ │ └── test.js
│ │ └── lib
│ │ ├── app.js
│ │ ├── express.js
│ │ ├── logger.js
│ │ ├── mongoose.js
│ │ ├── multer.js
│ │ ├── seed.js
│ │ └── socket.io.js
│ ├── CONTRIBUTING.md
│ ├── docker-compose.yml
│ ├── Dockerfile
│ ├── gruntfile.js
│ ├── gulpfile.js
│ ├── karma.conf.js
│ ├── LICENSE.md
│ ├── manifest.yml
│ ├── modules
│ │ ├── articles
│ │ │ ├── client
│ │ │ │ ├── articles.client.module.js
│ │ │ │ ├── config
│ │ │ │ │ ├── articles.client.config.js
│ │ │ │ │ └── articles.client.routes.js
│ │ │ │ ├── controllers
│ │ │ │ │ └── articles.client.controller.js
│ │ │ │ ├── services
│ │ │ │ │ └── articles.client.service.js
│ │ │ │ └── views
│ │ │ │ ├── create-article.client.view.html
│ │ │ │ ├── edit-article.client.view.html
│ │ │ │ ├── list-articles.client.view.html
│ │ │ │ └── view-article.client.view.html
│ │ │ ├── server
│ │ │ │ ├── config
│ │ │ │ │ └── articles.server.config.js
│ │ │ │ ├── controllers
│ │ │ │ │ └── articles.server.controller.js
│ │ │ │ ├── models
│ │ │ │ │ └── article.server.model.js
│ │ │ │ ├── policies
│ │ │ │ │ └── articles.server.policy.js
│ │ │ │ └── routes
│ │ │ │ └── articles.server.routes.js
│ │ │ └── tests
│ │ │ ├── client
│ │ │ │ └── articles.client.controller.tests.js
│ │ │ ├── e2e
│ │ │ │ └── articles.e2e.tests.js
│ │ │ └── server
│ │ │ ├── article.server.model.tests.js
│ │ │ └── article.server.routes.tests.js
│ │ ├── blog
│ │ │ └── client
│ │ │ ├── blog.modules.js
│ │ │ ├── config
│ │ │ │ ├── blog.client.menu.js
│ │ │ │ └── blog.client.routes.js
│ │ │ ├── controllers
│ │ │ │ ├── article.controller.js
│ │ │ │ └── word-cloud.controller.js
│ │ │ └── views
│ │ │ ├── blog-articles.client.view.html
│ │ │ ├── blog-article-view.client.view.html
│ │ │ ├── blog.client.view.html
│ │ │ └── blog-post.client.view.html
│ │ ├── bootstrapui
│ │ │ └── client
│ │ │ ├── bootstrapui.module.js
│ │ │ ├── config
│ │ │ │ └── bootstrapui.config.js
│ │ │ └── controllers
│ │ │ ├── alerts.controller.js
│ │ │ ├── buttons.controller.js
│ │ │ ├── carousel.controller.js
│ │ │ ├── datepicker.controller.js
│ │ │ ├── modals.controller.js
│ │ │ ├── pagination.controller.js
│ │ │ ├── popover.controller.js
│ │ │ ├── progress.controller.js
│ │ │ ├── rating.controller.js
│ │ │ ├── timepicker.controller.js
│ │ │ ├── tooltip.controller.js
│ │ │ └── typeahead.controller.js
│ │ ├── charts
│ │ │ └── client
│ │ │ ├── charts.module.js
│ │ │ ├── config
│ │ │ │ ├── charts.client.menu.js
│ │ │ │ └── charts.client.routes.js
│ │ │ ├── controllers
│ │ │ │ ├── chartist.controller.js
│ │ │ │ ├── chartjs.controller.js
│ │ │ │ ├── flot.controller.js
│ │ │ │ ├── morris.controller.js
│ │ │ │ ├── piecharts.controller.js
│ │ │ │ └── rickshaw.controller.js
│ │ │ ├── directives
│ │ │ │ ├── flot.directive.js
│ │ │ │ ├── morris.directive.js
│ │ │ │ └── sparklines.directive.js
│ │ │ ├── services
│ │ │ │ └── flot-data.service.js
│ │ │ └── views
│ │ │ ├── chart-chartist.client.view.html
│ │ │ ├── chart-flot.client.view.html
│ │ │ ├── chart-js.client.view.html
│ │ │ ├── chart-morris.client.view.html
│ │ │ ├── chart-radial.client.view.html
│ │ │ └── chart-rickshaw.client.view.html
│ │ ├── chat
│ │ │ ├── client
│ │ │ │ ├── chat.client.module.js
│ │ │ │ ├── config
│ │ │ │ │ ├── chat.client.config.js
│ │ │ │ │ └── chat.client.routes.js
│ │ │ │ ├── controllers
│ │ │ │ │ └── chat.client.controller.js
│ │ │ │ ├── css
│ │ │ │ │ └── chat.css
│ │ │ │ └── views
│ │ │ │ └── chat.client.view.html
│ │ │ ├── server
│ │ │ │ └── sockets
│ │ │ │ └── chat.server.socket.config.js
│ │ │ └── tests
│ │ │ ├── client
│ │ │ │ └── chat.client.controller.tests.js
│ │ │ ├── e2e
│ │ │ │ └── chat.e2e.tests.js
│ │ │ └── server
│ │ │ └── chat.socket.tests.js
│ │ ├── colors
│ │ │ └── client
│ │ │ ├── colors.module.js
│ │ │ ├── config
│ │ │ │ └── colors.client.contant.js
│ │ │ └── services
│ │ │ └── colors.client.service.js
│ │ ├── core
│ │ │ ├── client
│ │ │ │ ├── app
│ │ │ │ │ ├── config.js
│ │ │ │ │ └── init.js
│ │ │ │ ├── config
│ │ │ │ │ ├── core-admin.client.menus.js
│ │ │ │ │ ├── core-admin.client.routes.js
│ │ │ │ │ ├── core.client.config.js
│ │ │ │ │ ├── core.client.constants.js
│ │ │ │ │ ├── core.client.routes.js
│ │ │ │ │ └── core.client.run.js
│ │ │ │ ├── controllers
│ │ │ │ │ ├── header.client.controller.js
│ │ │ │ │ └── home.client.controller.js
│ │ │ │ ├── core.client.module.js
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ └── core.css
│ │ │ │ ├── directives
│ │ │ │ │ └── show-errors.client.directives.js
│ │ │ │ ├── scss
│ │ │ │ │ ├── app
│ │ │ │ │ │ ├── alerts.scss
│ │ │ │ │ │ ├── animate.scss
│ │ │ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ │ │ ├── breadcrumbs.scss
│ │ │ │ │ │ ├── button-extra.scss
│ │ │ │ │ │ ├── calendar.scss
│ │ │ │ │ │ ├── carousel.scss
│ │ │ │ │ │ ├── chart-easypie.scss
│ │ │ │ │ │ ├── chart-flot.scss
│ │ │ │ │ │ ├── circles.scss
│ │ │ │ │ │ ├── code-editor.scss
│ │ │ │ │ │ ├── datatable.scss
│ │ │ │ │ │ ├── datepicker.scss
│ │ │ │ │ │ ├── docs.scss
│ │ │ │ │ │ ├── dropdown-extra.scss
│ │ │ │ │ │ ├── form-elements.scss
│ │ │ │ │ │ ├── form-imgcrop.scss
│ │ │ │ │ │ ├── form-tags.scss
│ │ │ │ │ │ ├── form-validation.scss
│ │ │ │ │ │ ├── form-wizard.scss
│ │ │ │ │ │ ├── gmap.scss
│ │ │ │ │ │ ├── half-float.scss
│ │ │ │ │ │ ├── layout-animation.scss
│ │ │ │ │ │ ├── layout-extra.scss
│ │ │ │ │ │ ├── layout.scss
│ │ │ │ │ │ ├── loading-bar.scss
│ │ │ │ │ │ ├── mailbox.scss
│ │ │ │ │ │ ├── masonry-grid-deck.scss
│ │ │ │ │ │ ├── masonry-grid.scss
│ │ │ │ │ │ ├── media-queries.scss
│ │ │ │ │ │ ├── nestable.scss
│ │ │ │ │ │ ├── ngdialog.scss
│ │ │ │ │ │ ├── ngwig.scss
│ │ │ │ │ │ ├── notify.scss
│ │ │ │ │ │ ├── offsidebar.scss
│ │ │ │ │ │ ├── panels.scss
│ │ │ │ │ │ ├── placeholder.scss
│ │ │ │ │ │ ├── plans.scss
│ │ │ │ │ │ ├── plugins.scss
│ │ │ │ │ │ ├── portlets.scss
│ │ │ │ │ │ ├── preloader.scss
│ │ │ │ │ │ ├── print.scss
│ │ │ │ │ │ ├── progress-extra.scss
│ │ │ │ │ │ ├── radial-bar.scss
│ │ │ │ │ │ ├── row-extra.scss
│ │ │ │ │ │ ├── settings.scss
│ │ │ │ │ │ ├── sidebar.scss
│ │ │ │ │ │ ├── slim-scroll.scss
│ │ │ │ │ │ ├── spinner.scss
│ │ │ │ │ │ ├── table-angulargrid.scss
│ │ │ │ │ │ ├── table-extras.scss
│ │ │ │ │ │ ├── table-grid.scss
│ │ │ │ │ │ ├── table-ngtable.scss
│ │ │ │ │ │ ├── table-uigrid.scss
│ │ │ │ │ │ ├── timeline.scss
│ │ │ │ │ │ ├── todo.scss
│ │ │ │ │ │ ├── top-navbar.scss
│ │ │ │ │ │ ├── typeahead.scss
│ │ │ │ │ │ ├── typo.scss
│ │ │ │ │ │ ├── uiselect.scss
│ │ │ │ │ │ ├── user-block.scss
│ │ │ │ │ │ ├── utils-definitions.scss
│ │ │ │ │ │ ├── utils.scss
│ │ │ │ │ │ ├── variables.scss
│ │ │ │ │ │ ├── vector-map.scss
│ │ │ │ │ │ └── widget.scss
│ │ │ │ │ ├── bootstrap
│ │ │ │ │ │ ├── bootstrap
│ │ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ │ ├── _badges.scss
│ │ │ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ │ │ ├── _close.scss
│ │ │ │ │ │ │ ├── _code.scss
│ │ │ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ │ ├── _media.scss
│ │ │ │ │ │ │ ├── mixins
│ │ │ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ │ │ ├── _modals.scss
│ │ │ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ │ │ ├── _navs.scss
│ │ │ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ │ │ ├── _pager.scss
│ │ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ │ │ ├── _print.scss
│ │ │ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ │ │ ├── _tables.scss
│ │ │ │ │ │ │ ├── _theme.scss
│ │ │ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ │ │ ├── _type.scss
│ │ │ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ │ │ ├── _variables.scss
│ │ │ │ │ │ │ └── _wells.scss
│ │ │ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ │ │ ├── _bootstrap.scss
│ │ │ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ │ │ ├── bootstrap.scss
│ │ │ │ │ ├── core.scss
│ │ │ │ │ └── themes
│ │ │ │ │ ├── theme-a.scss
│ │ │ │ │ ├── theme-b.scss
│ │ │ │ │ ├── theme-c.scss
│ │ │ │ │ ├── theme-d.scss
│ │ │ │ │ ├── theme-e.scss
│ │ │ │ │ ├── theme-f.scss
│ │ │ │ │ ├── theme-g.scss
│ │ │ │ │ └── theme-h.scss
│ │ │ │ ├── services
│ │ │ │ │ ├── interceptors
│ │ │ │ │ │ └── auth.interceptor.client.service.js
│ │ │ │ │ ├── menus.client.service.js
│ │ │ │ │ └── socket.io.client.service.js
│ │ │ │ └── views
│ │ │ │ ├── 400.client.view.html
│ │ │ │ ├── 403.client.view.html
│ │ │ │ ├── 404.client.view.html
│ │ │ │ ├── core.client.view-h.html
│ │ │ │ ├── core.client.view.html
│ │ │ │ ├── header.client.view.html
│ │ │ │ ├── home.client.view.html
│ │ │ │ └── partials
│ │ │ │ ├── chat.html
│ │ │ │ ├── footer.html
│ │ │ │ ├── offsidebar.html
│ │ │ │ ├── settings.html
│ │ │ │ ├── sidebar.html
│ │ │ │ ├── top-navbar-h.html
│ │ │ │ └── top-navbar.html
│ │ │ ├── server
│ │ │ │ ├── controllers
│ │ │ │ │ ├── core.server.controller.js
│ │ │ │ │ └── errors.server.controller.js
│ │ │ │ ├── routes
│ │ │ │ │ └── core.server.routes.js
│ │ │ │ └── views
│ │ │ │ ├── 404.server.view.html
│ │ │ │ ├── 500.server.view.html
│ │ │ │ ├── index.server.view.html
│ │ │ │ └── layout.server.view.html
│ │ │ └── tests
│ │ │ ├── client
│ │ │ │ ├── core.client.tests.js
│ │ │ │ ├── header.client.controller.tests.js
│ │ │ │ ├── home.client.controller.tests.js
│ │ │ │ ├── interceptors
│ │ │ │ │ └── auth.interceptor.client.tests.js
│ │ │ │ ├── menus.client.service.tests.js
│ │ │ │ └── socket.io.client.service.tests.js
│ │ │ └── server
│ │ │ └── core.server.config.tests.js
│ │ ├── dashboard
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ ├── dashboard.client.menu.js
│ │ │ │ └── dashboard.client.routes.js
│ │ │ ├── controllers
│ │ │ │ ├── dashboard.controller.js
│ │ │ │ ├── dashboard.v2.controller.js
│ │ │ │ └── dashboard.v3.controller.js
│ │ │ ├── dashboard.module.js
│ │ │ └── views
│ │ │ ├── dashboard.client.view.html
│ │ │ ├── dashboard_v2.client.view.html
│ │ │ └── dashboard_v3.client.view.html
│ │ ├── ecommerce
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ ├── ecommerce.client.menu.js
│ │ │ │ └── ecommerce.client.routes.js
│ │ │ ├── ecommerce.module.js
│ │ │ └── views
│ │ │ ├── ecommerce-checkout.client.view.html
│ │ │ ├── ecommerce-orders.client.view.html
│ │ │ ├── ecommerce-order-view.client.view.html
│ │ │ ├── ecommerce-products.client.view.html
│ │ │ └── ecommerce-product-view.client.view.html
│ │ ├── elements
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ ├── elements.client.menu.js
│ │ │ │ └── elements.client.routes.js
│ │ │ ├── controllers
│ │ │ │ ├── carousel.controller.js
│ │ │ │ ├── dialog.controller.js
│ │ │ │ ├── infinite-scroll.controller.js
│ │ │ │ ├── masonry-deck.controller.js
│ │ │ │ ├── navtree.controller.js
│ │ │ │ ├── nestable.controller.js
│ │ │ │ ├── sortable.controller.js
│ │ │ │ ├── sweetalert.controller.js
│ │ │ │ ├── toaster.controller.js
│ │ │ │ └── tour.controller.js
│ │ │ ├── directives
│ │ │ │ └── scroll.directive.js
│ │ │ ├── elements.module.js
│ │ │ └── views
│ │ │ ├── buttons.client.view.html
│ │ │ ├── carousel.client.view.html
│ │ │ ├── colors.client.view.html
│ │ │ ├── dropdown-animations.client.view.html
│ │ │ ├── grid.client.view.html
│ │ │ ├── grid-masonry.client.view.html
│ │ │ ├── grid-masonry-deck-card.client.view.html
│ │ │ ├── grid-masonry-deck.client.view.html
│ │ │ ├── icons-font.client.view.html
│ │ │ ├── icons-weather.client.view.html
│ │ │ ├── infinite-scroll.client.view.html
│ │ │ ├── interaction.client.view.html
│ │ │ ├── localization.client.view.html
│ │ │ ├── nav-tree.client.view.html
│ │ │ ├── nestable.client.view.html
│ │ │ ├── ngdialog.client.view.html
│ │ │ ├── ngdialog-template.client.view.html
│ │ │ ├── notifications.client.view.html
│ │ │ ├── panels.client.view.html
│ │ │ ├── portlets.client.view.html
│ │ │ ├── sortable.client.view.html
│ │ │ ├── spinners.client.view.html
│ │ │ ├── sweetalert.client.view.html
│ │ │ ├── tour.client.view.html
│ │ │ └── typo.client.view.html
│ │ ├── extras
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ ├── extras.client.menu.js
│ │ │ │ └── extras.client.routes.js
│ │ │ ├── controllers
│ │ │ │ ├── calendar.controller.js
│ │ │ │ ├── code-editor.controller.js
│ │ │ │ └── todo.controller.js
│ │ │ ├── extras.module.js
│ │ │ ├── services
│ │ │ │ └── code-editor-loadtree.service.js
│ │ │ └── views
│ │ │ ├── bug-tracker.client.view.html
│ │ │ ├── calendar.client.view.html
│ │ │ ├── code-editor.client.view.html
│ │ │ ├── contact-details.client.view.html
│ │ │ ├── contacts.client.view.html
│ │ │ ├── faq.client.view.html
│ │ │ ├── file-manager.client.view.html
│ │ │ ├── followers.client.view.html
│ │ │ ├── forum.client.view.html
│ │ │ ├── forum-discussion.client.view.html
│ │ │ ├── forum-topics.client.view.html
│ │ │ ├── help-center.client.view.html
│ │ │ ├── invoice.client.view.html
│ │ │ ├── mailbox.client.view.html
│ │ │ ├── mailbox-compose.client.view.html
│ │ │ ├── mailbox-inbox.client.view.html
│ │ │ ├── mailbox-view.client.view.html
│ │ │ ├── plans.client.view.html
│ │ │ ├── profile.client.view.html
│ │ │ ├── project-details.client.view.html
│ │ │ ├── projects.client.view.html
│ │ │ ├── search.client.view.html
│ │ │ ├── settings.client.view.html
│ │ │ ├── social-board.client.view.html
│ │ │ ├── team-viewer.client.view.html
│ │ │ ├── timeline.client.view.html
│ │ │ ├── todo.client.view.html
│ │ │ └── vote-links.client.view.html
│ │ ├── flatdoc
│ │ │ └── client
│ │ │ ├── directives
│ │ │ │ └── flatdoc.directive.js
│ │ │ └── flatdoc.module.js
│ │ ├── forms
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ ├── forms.client.menu.js
│ │ │ │ └── forms.client.routes.js
│ │ │ ├── controllers
│ │ │ │ ├── color-picker.controller.js
│ │ │ │ ├── form-imgcrop.controller.js
│ │ │ │ ├── forms.controller.js
│ │ │ │ ├── form-validation.controller.js
│ │ │ │ ├── form-xeditable.controller.js
│ │ │ │ ├── uiselect.controller.js
│ │ │ │ └── upload.controller.js
│ │ │ ├── directives
│ │ │ │ ├── filestyle.directive.js
│ │ │ │ ├── form-wizard.directive.js
│ │ │ │ ├── masked.directive.js
│ │ │ │ └── tags-input.directive.js
│ │ │ ├── forms.module.js
│ │ │ ├── services
│ │ │ │ └── props.filter.js
│ │ │ └── views
│ │ │ ├── form-extended.client.view.html
│ │ │ ├── form-imagecrop.client.view.html
│ │ │ ├── form-standard.client.view.html
│ │ │ ├── form-uiselect.client.view.html
│ │ │ ├── form-upload.client.view.html
│ │ │ ├── form-validation.client.view.html
│ │ │ ├── form-wizard.client.view.html
│ │ │ └── form-xeditable.client.view.html
│ │ ├── icons
│ │ │ └── client
│ │ │ ├── directives
│ │ │ │ └── icons-skycons.directive.js
│ │ │ └── icons.module.js
│ │ ├── lazyload
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ ├── lazyload.client.config.js
│ │ │ │ └── lazyload.client.constants.js
│ │ │ └── lazyload.client.module.js
│ │ ├── loadingbar
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ ├── loadingbar.client.config.js
│ │ │ │ └── loadingbar.client.run.js
│ │ │ └── loadingbar.client.module.js
│ │ ├── locale
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ └── locale.config.js
│ │ │ ├── controllers
│ │ │ │ └── locale.controller.js
│ │ │ └── locale.module.js
│ │ ├── mailbox
│ │ │ └── client
│ │ │ ├── controllers
│ │ │ │ ├── mailbox.controller.js
│ │ │ │ ├── mailfolder.controller.js
│ │ │ │ └── mailview.controller.js
│ │ │ ├── mailbox.module.js
│ │ │ └── services
│ │ │ └── mails.service.js
│ │ ├── maps
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ ├── maps.client.menu.js
│ │ │ │ └── maps.client.routes.js
│ │ │ ├── controllers
│ │ │ │ ├── maps-google.controller.js
│ │ │ │ ├── maps-google-modal.controller.js
│ │ │ │ └── vector-maps.controller.js
│ │ │ ├── directives
│ │ │ │ └── vector-map.directive.js
│ │ │ ├── maps.module.js
│ │ │ ├── services
│ │ │ │ └── vector-map.service.js
│ │ │ └── views
│ │ │ ├── maps-google.client.view.html
│ │ │ └── maps-vector.client.view.html
│ │ ├── navsearch
│ │ │ └── client
│ │ │ ├── directives
│ │ │ │ └── navsearch.client.directive.js
│ │ │ ├── navsearch.client.module.js
│ │ │ └── services
│ │ │ └── navsearch.client.service.js
│ │ ├── notify
│ │ │ └── client
│ │ │ ├── controllers
│ │ │ │ └── notify.controller.js
│ │ │ ├── directives
│ │ │ │ └── notify.directive.js
│ │ │ ├── notify.module.js
│ │ │ └── services
│ │ │ └── notify.service.js
│ │ ├── page
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ └── page.client.routes.js
│ │ │ ├── page.client.module.js
│ │ │ └── views
│ │ │ └── page.client.view.html
│ │ ├── panels
│ │ │ └── client
│ │ │ ├── controllers
│ │ │ │ ├── panels.controller.js
│ │ │ │ └── portlet.controller.js
│ │ │ ├── directives
│ │ │ │ ├── panel-collapse.directive.js
│ │ │ │ ├── panel-dismiss.directive.js
│ │ │ │ ├── panel-refresh.directive.js
│ │ │ │ └── panel-tools.directive.js
│ │ │ └── panels.module.js
│ │ ├── preloader
│ │ │ └── client
│ │ │ ├── css
│ │ │ │ └── preloader.logos.css
│ │ │ ├── directives
│ │ │ │ └── preloader.client.directive.js
│ │ │ ├── img
│ │ │ │ ├── preloader.empty.png
│ │ │ │ └── preloader.full.png
│ │ │ ├── less
│ │ │ │ └── preloader.logos.less
│ │ │ └── preloader.client.module.js
│ │ ├── routes
│ │ │ └── client
│ │ │ ├── routes.client.module.js
│ │ │ └── services
│ │ │ └── route-helpers.client.provider.js
│ │ ├── settings
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ └── settings.client.run.js
│ │ │ └── settings.client.module.js
│ │ ├── sidebar
│ │ │ └── client
│ │ │ ├── controllers
│ │ │ │ ├── sidebar.client.controller.js
│ │ │ │ └── sidebar.userblock.client.controller.js
│ │ │ ├── directives
│ │ │ │ └── sidebar.client.directive.js
│ │ │ ├── services
│ │ │ │ └── sidebar.client.service.js
│ │ │ └── sidebar.client.module.js
│ │ ├── tables
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ ├── tables.client.menu.js
│ │ │ │ └── tables.client.routes.js
│ │ │ ├── controllers
│ │ │ │ ├── angular-grid.controller.js
│ │ │ │ ├── datatable.controller.js
│ │ │ │ ├── ngtable.controller.js
│ │ │ │ ├── table-xeditable.controller.js
│ │ │ │ └── uigrid.controller.js
│ │ │ ├── services
│ │ │ │ └── ngtable-data.service.js
│ │ │ ├── tables.module.js
│ │ │ └── views
│ │ │ ├── table-angulargrid.client.view.html
│ │ │ ├── table-datatable.client.view.html
│ │ │ ├── table-extended.client.view.html
│ │ │ ├── table-ngtable.client.view.html
│ │ │ ├── table-standard.client.view.html
│ │ │ ├── table-uigrid.client.view.html
│ │ │ └── table-xeditable.client.view.html
│ │ ├── translate
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ ├── translate.client.config.js
│ │ │ │ └── translate.client.run.js
│ │ │ └── translate.client.module.js
│ │ ├── users
│ │ │ ├── client
│ │ │ │ ├── config
│ │ │ │ │ ├── users-admin.client.menus.js
│ │ │ │ │ ├── users-admin.client.routes.js
│ │ │ │ │ ├── users.client.config.js
│ │ │ │ │ └── users.client.routes.js
│ │ │ │ ├── controllers
│ │ │ │ │ ├── admin
│ │ │ │ │ │ ├── list-users.client.controller.js
│ │ │ │ │ │ └── user.client.controller.js
│ │ │ │ │ ├── authentication.client.controller.js
│ │ │ │ │ ├── password.client.controller.js
│ │ │ │ │ └── settings
│ │ │ │ │ ├── change-password.client.controller.js
│ │ │ │ │ ├── change-profile-picture.client.controller.js
│ │ │ │ │ ├── edit-profile.client.controller.js
│ │ │ │ │ ├── manage-social-accounts.client.controller.js
│ │ │ │ │ └── settings.client.controller.js
│ │ │ │ ├── css
│ │ │ │ │ └── users.css
│ │ │ │ ├── directives
│ │ │ │ │ ├── password-validator.client.directive.js
│ │ │ │ │ ├── password-verify.client.directive.js
│ │ │ │ │ └── users.client.directive.js
│ │ │ │ ├── img
│ │ │ │ │ ├── buttons
│ │ │ │ │ │ ├── facebook.png
│ │ │ │ │ │ ├── github.png
│ │ │ │ │ │ ├── google.png
│ │ │ │ │ │ ├── linkedin.png
│ │ │ │ │ │ ├── paypal.png
│ │ │ │ │ │ └── twitter.png
│ │ │ │ │ └── profile
│ │ │ │ │ └── default.png
│ │ │ │ ├── services
│ │ │ │ │ ├── authentication.client.service.js
│ │ │ │ │ ├── password-validator.client.service.js
│ │ │ │ │ └── users.client.service.js
│ │ │ │ ├── users.client.module.js
│ │ │ │ └── views
│ │ │ │ ├── admin
│ │ │ │ │ ├── edit-user.client.view.html
│ │ │ │ │ ├── list-users.client.view.html
│ │ │ │ │ └── view-user.client.view.html
│ │ │ │ ├── authentication
│ │ │ │ │ ├── authentication.client.view.html
│ │ │ │ │ ├── signin.client.view.html
│ │ │ │ │ └── signup.client.view.html
│ │ │ │ ├── password
│ │ │ │ │ ├── forgot-password.client.view.html
│ │ │ │ │ ├── reset-password.client.view.html
│ │ │ │ │ ├── reset-password-invalid.client.view.html
│ │ │ │ │ └── reset-password-success.client.view.html
│ │ │ │ └── settings
│ │ │ │ ├── change-password.client.view.html
│ │ │ │ ├── change-profile-picture.client.view.html
│ │ │ │ ├── edit-profile.client.view.html
│ │ │ │ ├── manage-social-accounts.client.view.html
│ │ │ │ └── settings.client.view.html
│ │ │ ├── server
│ │ │ │ ├── config
│ │ │ │ │ ├── strategies
│ │ │ │ │ │ ├── facebook.js
│ │ │ │ │ │ ├── github.js
│ │ │ │ │ │ ├── google.js
│ │ │ │ │ │ ├── linkedin.js
│ │ │ │ │ │ ├── local.js
│ │ │ │ │ │ ├── paypal.js
│ │ │ │ │ │ └── twitter.js
│ │ │ │ │ └── users.server.config.js
│ │ │ │ ├── controllers
│ │ │ │ │ ├── admin.server.controller.js
│ │ │ │ │ ├── users
│ │ │ │ │ │ ├── users.authentication.server.controller.js
│ │ │ │ │ │ ├── users.authorization.server.controller.js
│ │ │ │ │ │ ├── users.password.server.controller.js
│ │ │ │ │ │ └── users.profile.server.controller.js
│ │ │ │ │ └── users.server.controller.js
│ │ │ │ ├── models
│ │ │ │ │ └── user.server.model.js
│ │ │ │ ├── policies
│ │ │ │ │ └── admin.server.policy.js
│ │ │ │ ├── routes
│ │ │ │ │ ├── admin.server.routes.js
│ │ │ │ │ ├── auth.server.routes.js
│ │ │ │ │ └── users.server.routes.js
│ │ │ │ └── templates
│ │ │ │ ├── reset-password-confirm-email.server.view.html
│ │ │ │ └── reset-password-email.server.view.html
│ │ │ └── tests
│ │ │ ├── client
│ │ │ │ ├── authentication.client.controller.tests.js
│ │ │ │ ├── password.client.controller.tests.js
│ │ │ │ ├── password-validator.client.directive.tests.js
│ │ │ │ └── password-verify.client.directive.tests.js
│ │ │ ├── e2e
│ │ │ │ └── users.e2e.tests.js
│ │ │ └── server
│ │ │ ├── user.server.model.tests.js
│ │ │ └── user.server.routes.tests.js
│ │ ├── utils
│ │ │ └── client
│ │ │ ├── directives
│ │ │ │ ├── animate-enabled.client.directive.js
│ │ │ │ ├── clear-storage.client.directive.js
│ │ │ │ ├── fullscreen.client.directive.js
│ │ │ │ ├── load-css.client.directive.js
│ │ │ │ ├── now.client.directive.js
│ │ │ │ ├── table-checkall.client.directive.js
│ │ │ │ └── trigger-resize.client.directive.js
│ │ │ ├── services
│ │ │ │ ├── browser.client.service.js
│ │ │ │ └── utils.client.service.js
│ │ │ └── utils.client.module.js
│ │ └── widgets
│ │ └── client
│ │ ├── config
│ │ │ ├── widgets.client.menu.js
│ │ │ └── widgets.client.routes.js
│ │ ├── views
│ │ │ └── widgets.client.view.html
│ │ └── widgets.module.js
│ ├── package.json
│ ├── Procfile
│ ├── protractor.conf.js
│ ├── public
│ │ ├── humans.txt
│ │ ├── i18n
│ │ │ ├── en.json
│ │ │ └── es_AR.json
│ │ ├── img
│ │ │ ├── bg10.jpg
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.jpg
│ │ │ ├── bg3.jpg
│ │ │ ├── bg4.jpg
│ │ │ ├── bg5.jpg
│ │ │ ├── bg6.jpg
│ │ │ ├── bg7.jpg
│ │ │ ├── bg8.jpg
│ │ │ ├── bg9.jpg
│ │ │ ├── brand
│ │ │ │ ├── favicon
│ │ │ │ │ ├── apple-touch-icon-114x114-precomposed.png
│ │ │ │ │ ├── apple-touch-icon-144x144-precomposed.png
│ │ │ │ │ ├── apple-touch-icon-57x57-precomposed.png
│ │ │ │ │ ├── apple-touch-icon-72x72-precomposed.png
│ │ │ │ │ ├── apple-touch-icon.png
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ └── favicon.png
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── logo-mean.png
│ │ │ │ ├── logo.png
│ │ │ │ └── logo-single.png
│ │ │ ├── dummy.png
│ │ │ ├── loaders
│ │ │ │ └── loader.gif
│ │ │ ├── lock-bg.jpg
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ ├── mb-sample.jpg
│ │ │ ├── mockup.png
│ │ │ ├── profile-bg.jpg
│ │ │ └── user
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 04.jpg
│ │ │ ├── 05.jpg
│ │ │ ├── 06.jpg
│ │ │ ├── 07.jpg
│ │ │ ├── 08.jpg
│ │ │ ├── 09.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ └── 13.jpg
│ │ ├── robots.txt
│ │ ├── server
│ │ │ ├── ag-owinners.json
│ │ │ ├── chart
│ │ │ │ ├── area.json
│ │ │ │ ├── bar.json
│ │ │ │ ├── barstacked.json
│ │ │ │ ├── barstackedv2.json
│ │ │ │ ├── donut.json
│ │ │ │ ├── line.json
│ │ │ │ ├── pie.json
│ │ │ │ ├── realtime.json
│ │ │ │ ├── spline.json
│ │ │ │ ├── splinev2.json
│ │ │ │ └── splinev3.json
│ │ │ ├── chosen-states.json
│ │ │ ├── cities.json
│ │ │ ├── datatable.json
│ │ │ ├── editor
│ │ │ │ ├── filetree.json
│ │ │ │ └── source
│ │ │ │ ├── another.html
│ │ │ │ ├── css
│ │ │ │ │ └── style.css
│ │ │ │ ├── index.html
│ │ │ │ └── js
│ │ │ │ └── script.js
│ │ │ ├── mails.json
│ │ │ ├── ng-grid-data.json
│ │ │ ├── table-data.json
│ │ │ ├── treedata.json
│ │ │ ├── uigrid-100.json
│ │ │ ├── uigrid-complex.json
│ │ │ ├── upload.php
│ │ │ └── xeditable-groups.json
│ │ └── themes
│ │ ├── theme-a.css
│ │ ├── theme-b.css
│ │ ├── theme-c.css
│ │ ├── theme-d.css
│ │ ├── theme-e.css
│ │ ├── theme-f.css
│ │ ├── theme-g.css
│ │ └── theme-h.css
│ ├── README.md
│ ├── scripts
│ │ ├── generate-ssl-certs.sh
│ │ └── reset-password.js
│ ├── server.js
│ └── test.js
├── meanjs-seed
│ ├── bower.json
│ ├── CHANGELOG.md
│ ├── config
│ │ ├── assets
│ │ │ ├── cloud-foundry.js
│ │ │ ├── default.js
│ │ │ ├── development.js
│ │ │ ├── production.js
│ │ │ └── test.js
│ │ ├── config.js
│ │ ├── env
│ │ │ ├── cloud-foundry.js
│ │ │ ├── default.js
│ │ │ ├── development.js
│ │ │ ├── local.example.js
│ │ │ ├── production.js
│ │ │ └── test.js
│ │ └── lib
│ │ ├── app.js
│ │ ├── express.js
│ │ ├── logger.js
│ │ ├── mongoose.js
│ │ ├── multer.js
│ │ ├── seed.js
│ │ └── socket.io.js
│ ├── CONTRIBUTING.md
│ ├── docker-compose.yml
│ ├── Dockerfile
│ ├── gruntfile.js
│ ├── gulpfile.js
│ ├── karma.conf.js
│ ├── LICENSE.md
│ ├── manifest.yml
│ ├── modules
│ │ ├── articles
│ │ │ ├── client
│ │ │ │ ├── articles.client.module.js
│ │ │ │ ├── config
│ │ │ │ │ ├── articles.client.config.js
│ │ │ │ │ └── articles.client.routes.js
│ │ │ │ ├── controllers
│ │ │ │ │ └── articles.client.controller.js
│ │ │ │ ├── services
│ │ │ │ │ └── articles.client.service.js
│ │ │ │ └── views
│ │ │ │ ├── create-article.client.view.html
│ │ │ │ ├── edit-article.client.view.html
│ │ │ │ ├── list-articles.client.view.html
│ │ │ │ └── view-article.client.view.html
│ │ │ ├── server
│ │ │ │ ├── config
│ │ │ │ │ └── articles.server.config.js
│ │ │ │ ├── controllers
│ │ │ │ │ └── articles.server.controller.js
│ │ │ │ ├── models
│ │ │ │ │ └── article.server.model.js
│ │ │ │ ├── policies
│ │ │ │ │ └── articles.server.policy.js
│ │ │ │ └── routes
│ │ │ │ └── articles.server.routes.js
│ │ │ └── tests
│ │ │ ├── client
│ │ │ │ └── articles.client.controller.tests.js
│ │ │ ├── e2e
│ │ │ │ └── articles.e2e.tests.js
│ │ │ └── server
│ │ │ ├── article.server.model.tests.js
│ │ │ └── article.server.routes.tests.js
│ │ ├── colors
│ │ │ └── client
│ │ │ ├── colors.module.js
│ │ │ ├── config
│ │ │ │ └── colors.client.contant.js
│ │ │ └── services
│ │ │ └── colors.client.service.js
│ │ ├── core
│ │ │ ├── client
│ │ │ │ ├── app
│ │ │ │ │ ├── config.js
│ │ │ │ │ └── init.js
│ │ │ │ ├── config
│ │ │ │ │ ├── core-admin.client.menus.js
│ │ │ │ │ ├── core-admin.client.routes.js
│ │ │ │ │ ├── core.client.config.js
│ │ │ │ │ ├── core.client.constants.js
│ │ │ │ │ ├── core.client.routes.js
│ │ │ │ │ └── core.client.run.js
│ │ │ │ ├── controllers
│ │ │ │ │ ├── header.client.controller.js
│ │ │ │ │ └── home.client.controller.js
│ │ │ │ ├── core.client.module.js
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ └── core.css
│ │ │ │ ├── directives
│ │ │ │ │ └── show-errors.client.directives.js
│ │ │ │ ├── scss
│ │ │ │ │ ├── app
│ │ │ │ │ │ ├── animate.scss
│ │ │ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ │ │ ├── breadcrumbs.scss
│ │ │ │ │ │ ├── form-elements.scss
│ │ │ │ │ │ ├── layout-animation.scss
│ │ │ │ │ │ ├── layout-extra.scss
│ │ │ │ │ │ ├── layout.scss
│ │ │ │ │ │ ├── loading-bar.scss
│ │ │ │ │ │ ├── media-queries.scss
│ │ │ │ │ │ ├── offsidebar.scss
│ │ │ │ │ │ ├── preloader.scss
│ │ │ │ │ │ ├── print.scss
│ │ │ │ │ │ ├── settings.scss
│ │ │ │ │ │ ├── sidebar.scss
│ │ │ │ │ │ ├── table-grid.scss
│ │ │ │ │ │ ├── top-navbar.scss
│ │ │ │ │ │ ├── typo.scss
│ │ │ │ │ │ ├── utils-definitions.scss
│ │ │ │ │ │ ├── utils.scss
│ │ │ │ │ │ └── variables.scss
│ │ │ │ │ ├── bootstrap
│ │ │ │ │ │ ├── bootstrap
│ │ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ │ ├── _badges.scss
│ │ │ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ │ │ ├── _close.scss
│ │ │ │ │ │ │ ├── _code.scss
│ │ │ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ │ ├── _media.scss
│ │ │ │ │ │ │ ├── mixins
│ │ │ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ │ │ ├── _modals.scss
│ │ │ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ │ │ ├── _navs.scss
│ │ │ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ │ │ ├── _pager.scss
│ │ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ │ │ ├── _print.scss
│ │ │ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ │ │ ├── _tables.scss
│ │ │ │ │ │ │ ├── _theme.scss
│ │ │ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ │ │ ├── _type.scss
│ │ │ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ │ │ ├── _variables.scss
│ │ │ │ │ │ │ └── _wells.scss
│ │ │ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ │ │ ├── _bootstrap.scss
│ │ │ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ │ │ ├── bootstrap.scss
│ │ │ │ │ ├── core.scss
│ │ │ │ │ └── themes
│ │ │ │ │ ├── theme-a.scss
│ │ │ │ │ ├── theme-b.scss
│ │ │ │ │ ├── theme-c.scss
│ │ │ │ │ ├── theme-d.scss
│ │ │ │ │ ├── theme-e.scss
│ │ │ │ │ ├── theme-f.scss
│ │ │ │ │ ├── theme-g.scss
│ │ │ │ │ └── theme-h.scss
│ │ │ │ ├── services
│ │ │ │ │ ├── interceptors
│ │ │ │ │ │ └── auth.interceptor.client.service.js
│ │ │ │ │ ├── menus.client.service.js
│ │ │ │ │ └── socket.io.client.service.js
│ │ │ │ └── views
│ │ │ │ ├── 400.client.view.html
│ │ │ │ ├── 403.client.view.html
│ │ │ │ ├── 404.client.view.html
│ │ │ │ ├── core.client.view-h.html
│ │ │ │ ├── core.client.view.html
│ │ │ │ ├── header.client.view.html
│ │ │ │ ├── home.client.view.html
│ │ │ │ └── partials
│ │ │ │ ├── chat.html
│ │ │ │ ├── footer.html
│ │ │ │ ├── offsidebar.html
│ │ │ │ ├── offsidebar-tab2.html
│ │ │ │ ├── settings.html
│ │ │ │ ├── sidebar.html
│ │ │ │ ├── top-navbar-h.html
│ │ │ │ └── top-navbar.html
│ │ │ ├── server
│ │ │ │ ├── controllers
│ │ │ │ │ ├── core.server.controller.js
│ │ │ │ │ └── errors.server.controller.js
│ │ │ │ ├── routes
│ │ │ │ │ └── core.server.routes.js
│ │ │ │ └── views
│ │ │ │ ├── 404.server.view.html
│ │ │ │ ├── 500.server.view.html
│ │ │ │ ├── index.server.view.html
│ │ │ │ └── layout.server.view.html
│ │ │ └── tests
│ │ │ ├── client
│ │ │ │ ├── core.client.tests.js
│ │ │ │ ├── header.client.controller.tests.js
│ │ │ │ ├── home.client.controller.tests.js
│ │ │ │ ├── interceptors
│ │ │ │ │ └── auth.interceptor.client.tests.js
│ │ │ │ ├── menus.client.service.tests.js
│ │ │ │ └── socket.io.client.service.tests.js
│ │ │ └── server
│ │ │ └── core.server.config.tests.js
│ │ ├── lazyload
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ ├── lazyload.client.config.js
│ │ │ │ └── lazyload.client.constants.js
│ │ │ └── lazyload.client.module.js
│ │ ├── loadingbar
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ ├── loadingbar.client.config.js
│ │ │ │ └── loadingbar.client.run.js
│ │ │ └── loadingbar.client.module.js
│ │ ├── navsearch
│ │ │ └── client
│ │ │ ├── directives
│ │ │ │ └── navsearch.client.directive.js
│ │ │ ├── navsearch.client.module.js
│ │ │ └── services
│ │ │ └── navsearch.client.service.js
│ │ ├── page
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ └── page.client.routes.js
│ │ │ ├── page.client.module.js
│ │ │ └── views
│ │ │ └── page.client.view.html
│ │ ├── preloader
│ │ │ └── client
│ │ │ ├── css
│ │ │ │ └── preloader.logos.css
│ │ │ ├── directives
│ │ │ │ └── preloader.client.directive.js
│ │ │ ├── img
│ │ │ │ ├── preloader.empty.png
│ │ │ │ └── preloader.full.png
│ │ │ ├── less
│ │ │ │ └── preloader.logos.less
│ │ │ └── preloader.client.module.js
│ │ ├── routes
│ │ │ └── client
│ │ │ ├── routes.client.module.js
│ │ │ └── services
│ │ │ └── route-helpers.client.provider.js
│ │ ├── settings
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ └── settings.client.run.js
│ │ │ └── settings.client.module.js
│ │ ├── sidebar
│ │ │ └── client
│ │ │ ├── controllers
│ │ │ │ ├── sidebar.client.controller.js
│ │ │ │ └── sidebar.userblock.client.controller.js
│ │ │ ├── directives
│ │ │ │ └── sidebar.client.directive.js
│ │ │ ├── services
│ │ │ │ └── sidebar.client.service.js
│ │ │ └── sidebar.client.module.js
│ │ ├── translate
│ │ │ └── client
│ │ │ ├── config
│ │ │ │ ├── translate.client.config.js
│ │ │ │ └── translate.client.run.js
│ │ │ └── translate.client.module.js
│ │ ├── users
│ │ │ ├── client
│ │ │ │ ├── config
│ │ │ │ │ ├── users-admin.client.menus.js
│ │ │ │ │ ├── users-admin.client.routes.js
│ │ │ │ │ ├── users.client.config.js
│ │ │ │ │ └── users.client.routes.js
│ │ │ │ ├── controllers
│ │ │ │ │ ├── admin
│ │ │ │ │ │ ├── list-users.client.controller.js
│ │ │ │ │ │ └── user.client.controller.js
│ │ │ │ │ ├── authentication.client.controller.js
│ │ │ │ │ ├── password.client.controller.js
│ │ │ │ │ └── settings
│ │ │ │ │ ├── change-password.client.controller.js
│ │ │ │ │ ├── change-profile-picture.client.controller.js
│ │ │ │ │ ├── edit-profile.client.controller.js
│ │ │ │ │ ├── manage-social-accounts.client.controller.js
│ │ │ │ │ └── settings.client.controller.js
│ │ │ │ ├── css
│ │ │ │ │ └── users.css
│ │ │ │ ├── directives
│ │ │ │ │ ├── password-validator.client.directive.js
│ │ │ │ │ ├── password-verify.client.directive.js
│ │ │ │ │ └── users.client.directive.js
│ │ │ │ ├── img
│ │ │ │ │ ├── buttons
│ │ │ │ │ │ ├── facebook.png
│ │ │ │ │ │ ├── github.png
│ │ │ │ │ │ ├── google.png
│ │ │ │ │ │ ├── linkedin.png
│ │ │ │ │ │ ├── paypal.png
│ │ │ │ │ │ └── twitter.png
│ │ │ │ │ └── profile
│ │ │ │ │ └── default.png
│ │ │ │ ├── services
│ │ │ │ │ ├── authentication.client.service.js
│ │ │ │ │ ├── password-validator.client.service.js
│ │ │ │ │ └── users.client.service.js
│ │ │ │ ├── users.client.module.js
│ │ │ │ └── views
│ │ │ │ ├── admin
│ │ │ │ │ ├── edit-user.client.view.html
│ │ │ │ │ ├── list-users.client.view.html
│ │ │ │ │ └── view-user.client.view.html
│ │ │ │ ├── authentication
│ │ │ │ │ ├── authentication.client.view.html
│ │ │ │ │ ├── signin.client.view.html
│ │ │ │ │ └── signup.client.view.html
│ │ │ │ ├── password
│ │ │ │ │ ├── forgot-password.client.view.html
│ │ │ │ │ ├── reset-password.client.view.html
│ │ │ │ │ ├── reset-password-invalid.client.view.html
│ │ │ │ │ └── reset-password-success.client.view.html
│ │ │ │ └── settings
│ │ │ │ ├── change-password.client.view.html
│ │ │ │ ├── change-profile-picture.client.view.html
│ │ │ │ ├── edit-profile.client.view.html
│ │ │ │ ├── manage-social-accounts.client.view.html
│ │ │ │ └── settings.client.view.html
│ │ │ ├── server
│ │ │ │ ├── config
│ │ │ │ │ ├── strategies
│ │ │ │ │ │ ├── facebook.js
│ │ │ │ │ │ ├── github.js
│ │ │ │ │ │ ├── google.js
│ │ │ │ │ │ ├── linkedin.js
│ │ │ │ │ │ ├── local.js
│ │ │ │ │ │ ├── paypal.js
│ │ │ │ │ │ └── twitter.js
│ │ │ │ │ └── users.server.config.js
│ │ │ │ ├── controllers
│ │ │ │ │ ├── admin.server.controller.js
│ │ │ │ │ ├── users
│ │ │ │ │ │ ├── users.authentication.server.controller.js
│ │ │ │ │ │ ├── users.authorization.server.controller.js
│ │ │ │ │ │ ├── users.password.server.controller.js
│ │ │ │ │ │ └── users.profile.server.controller.js
│ │ │ │ │ └── users.server.controller.js
│ │ │ │ ├── models
│ │ │ │ │ └── user.server.model.js
│ │ │ │ ├── policies
│ │ │ │ │ └── admin.server.policy.js
│ │ │ │ ├── routes
│ │ │ │ │ ├── admin.server.routes.js
│ │ │ │ │ ├── auth.server.routes.js
│ │ │ │ │ └── users.server.routes.js
│ │ │ │ └── templates
│ │ │ │ ├── reset-password-confirm-email.server.view.html
│ │ │ │ └── reset-password-email.server.view.html
│ │ │ └── tests
│ │ │ ├── client
│ │ │ │ ├── authentication.client.controller.tests.js
│ │ │ │ ├── password.client.controller.tests.js
│ │ │ │ ├── password-validator.client.directive.tests.js
│ │ │ │ └── password-verify.client.directive.tests.js
│ │ │ ├── e2e
│ │ │ │ └── users.e2e.tests.js
│ │ │ └── server
│ │ │ ├── user.server.model.tests.js
│ │ │ └── user.server.routes.tests.js
│ │ └── utils
│ │ └── client
│ │ ├── directives
│ │ │ ├── animate-enabled.client.directive.js
│ │ │ ├── clear-storage.client.directive.js
│ │ │ ├── fullscreen.client.directive.js
│ │ │ ├── load-css.client.directive.js
│ │ │ ├── now.client.directive.js
│ │ │ ├── table-checkall.client.directive.js
│ │ │ └── trigger-resize.client.directive.js
│ │ ├── services
│ │ │ ├── browser.client.service.js
│ │ │ └── utils.client.service.js
│ │ └── utils.client.module.js
│ ├── package.json
│ ├── Procfile
│ ├── protractor.conf.js
│ ├── public
│ │ ├── humans.txt
│ │ ├── i18n
│ │ │ ├── en.json
│ │ │ └── es_AR.json
│ │ ├── img
│ │ │ ├── bg10.jpg
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.jpg
│ │ │ ├── bg3.jpg
│ │ │ ├── bg4.jpg
│ │ │ ├── bg5.jpg
│ │ │ ├── bg6.jpg
│ │ │ ├── bg7.jpg
│ │ │ ├── bg8.jpg
│ │ │ ├── bg9.jpg
│ │ │ ├── brand
│ │ │ │ ├── favicon
│ │ │ │ │ ├── apple-touch-icon-114x114-precomposed.png
│ │ │ │ │ ├── apple-touch-icon-144x144-precomposed.png
│ │ │ │ │ ├── apple-touch-icon-57x57-precomposed.png
│ │ │ │ │ ├── apple-touch-icon-72x72-precomposed.png
│ │ │ │ │ ├── apple-touch-icon.png
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ └── favicon.png
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── logo-mean.png
│ │ │ │ ├── logo.png
│ │ │ │ └── logo-single.png
│ │ │ ├── dummy.png
│ │ │ ├── loaders
│ │ │ │ └── loader.gif
│ │ │ ├── lock-bg.jpg
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ ├── mb-sample.jpg
│ │ │ ├── mockup.png
│ │ │ ├── profile-bg.jpg
│ │ │ └── user
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 04.jpg
│ │ │ ├── 05.jpg
│ │ │ ├── 06.jpg
│ │ │ ├── 07.jpg
│ │ │ ├── 08.jpg
│ │ │ ├── 09.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ └── 13.jpg
│ │ ├── robots.txt
│ │ ├── server
│ │ │ ├── ag-owinners.json
│ │ │ ├── chart
│ │ │ │ ├── area.json
│ │ │ │ ├── bar.json
│ │ │ │ ├── barstacked.json
│ │ │ │ ├── barstackedv2.json
│ │ │ │ ├── donut.json
│ │ │ │ ├── line.json
│ │ │ │ ├── pie.json
│ │ │ │ ├── realtime.json
│ │ │ │ ├── spline.json
│ │ │ │ ├── splinev2.json
│ │ │ │ └── splinev3.json
│ │ │ ├── chosen-states.json
│ │ │ ├── cities.json
│ │ │ ├── datatable.json
│ │ │ ├── editor
│ │ │ │ ├── filetree.json
│ │ │ │ └── source
│ │ │ │ ├── another.html
│ │ │ │ ├── css
│ │ │ │ │ └── style.css
│ │ │ │ ├── index.html
│ │ │ │ └── js
│ │ │ │ └── script.js
│ │ │ ├── mails.json
│ │ │ ├── ng-grid-data.json
│ │ │ ├── table-data.json
│ │ │ ├── treedata.json
│ │ │ ├── uigrid-100.json
│ │ │ ├── uigrid-complex.json
│ │ │ ├── upload.php
│ │ │ └── xeditable-groups.json
│ │ └── themes
│ │ ├── theme-a.css
│ │ ├── theme-b.css
│ │ ├── theme-c.css
│ │ ├── theme-d.css
│ │ ├── theme-e.css
│ │ ├── theme-f.css
│ │ ├── theme-g.css
│ │ └── theme-h.css
│ ├── README.md
│ ├── scripts
│ │ ├── generate-ssl-certs.sh
│ │ └── reset-password.js
│ ├── server.js
│ └── test.js
├── mvc5-angular
│ └── Angle
│ ├── Angle
│ │ ├── Angle.csproj
│ │ ├── Angle.csproj.user
│ │ ├── App_Data
│ │ │ └── aspnet-Angle-20150305075354.mdf
│ │ ├── ApplicationInsights.config
│ │ ├── App_Start
│ │ │ ├── BundleConfig.cs
│ │ │ ├── FilterConfig.cs
│ │ │ ├── IdentityConfig.cs
│ │ │ ├── RouteConfig.cs
│ │ │ └── Startup.Auth.cs
│ │ ├── Content
│ │ │ ├── app
│ │ │ │ ├── app.css
│ │ │ │ ├── app-rtl.css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap-rtl.css
│ │ │ │ ├── theme-a.css
│ │ │ │ ├── theme-b.css
│ │ │ │ ├── theme-c.css
│ │ │ │ ├── theme-d.css
│ │ │ │ ├── theme-e.css
│ │ │ │ ├── theme-f.css
│ │ │ │ ├── theme-g.css
│ │ │ │ └── theme-h.css
│ │ │ └── mvc-override.css
│ │ ├── Controllers
│ │ │ ├── AccountController.cs
│ │ │ ├── AppController.cs
│ │ │ ├── BlogController.cs
│ │ │ ├── ChartsController.cs
│ │ │ ├── DashboardController.cs
│ │ │ ├── DocumentationController.cs
│ │ │ ├── EcommerceController.cs
│ │ │ ├── ElementsController.cs
│ │ │ ├── ExtrasController.cs
│ │ │ ├── FormsController.cs
│ │ │ ├── ForumController.cs
│ │ │ ├── HomeController.cs
│ │ │ ├── ManageController.cs
│ │ │ ├── MapsController.cs
│ │ │ ├── PagesController.cs
│ │ │ ├── PartialsController.cs
│ │ │ ├── SingleViewController.cs
│ │ │ ├── TablesController.cs
│ │ │ └── WidgetsController.cs
│ │ ├── favicon.ico
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── fontawesome-webfont.woff2
│ │ │ ├── Simple-Line-Icons.eot
│ │ │ ├── Simple-Line-Icons.svg
│ │ │ ├── Simple-Line-Icons.ttf
│ │ │ ├── Simple-Line-Icons.woff
│ │ │ └── Simple-Line-Icons.woff2
│ │ ├── Global.asax
│ │ ├── Global.asax.cs
│ │ ├── i18n
│ │ │ ├── en.json
│ │ │ └── es_AR.json
│ │ ├── Images
│ │ │ ├── bg10.jpg
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.jpg
│ │ │ ├── bg3.jpg
│ │ │ ├── bg4.jpg
│ │ │ ├── bg5.jpg
│ │ │ ├── bg6.jpg
│ │ │ ├── bg7.jpg
│ │ │ ├── bg8.jpg
│ │ │ ├── bg9.jpg
│ │ │ ├── dummy.png
│ │ │ ├── lock-bg.jpg
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ ├── mb-sample.jpg
│ │ │ ├── mockup.png
│ │ │ ├── preloader
│ │ │ │ ├── preloader.empty.png
│ │ │ │ └── preloader.full.png
│ │ │ ├── profile-bg.jpg
│ │ │ └── user
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 04.jpg
│ │ │ ├── 05.jpg
│ │ │ ├── 06.jpg
│ │ │ ├── 07.jpg
│ │ │ ├── 08.jpg
│ │ │ ├── 09.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ └── 13.jpg
│ │ ├── Models
│ │ │ ├── AccountViewModels.cs
│ │ │ ├── IdentityModels.cs
│ │ │ └── ManageViewModels.cs
│ │ ├── packages.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Scripts
│ │ │ └── app
│ │ │ ├── app.module.js
│ │ │ ├── custom
│ │ │ │ ├── custom.controller.js
│ │ │ │ ├── custom.module.js
│ │ │ │ └── README.txt
│ │ │ └── modules
│ │ │ ├── bootstrapui
│ │ │ │ ├── alerts.controller.js
│ │ │ │ ├── bootstrapui.config.js
│ │ │ │ ├── bootstrapui.module.js
│ │ │ │ ├── buttons.controller.js
│ │ │ │ ├── carousel.controller.js
│ │ │ │ ├── datepicker.controller.js
│ │ │ │ ├── modals.controller.js
│ │ │ │ ├── pagination.controller.js
│ │ │ │ ├── popover.controller.js
│ │ │ │ ├── progress.controller.js
│ │ │ │ ├── rating.controller.js
│ │ │ │ ├── timepicker.controller.js
│ │ │ │ ├── tooltip.controller.js
│ │ │ │ └── typeahead.controller.js
│ │ │ ├── charts
│ │ │ │ ├── chartist.controller.js
│ │ │ │ ├── chartjs.controller.js
│ │ │ │ ├── charts.module.js
│ │ │ │ ├── flot.controller.js
│ │ │ │ ├── flot-data.service.js
│ │ │ │ ├── flot.directive.js
│ │ │ │ ├── morris.controller.js
│ │ │ │ ├── morris.directive.js
│ │ │ │ ├── piecharts.controller.js
│ │ │ │ ├── rickshaw.controller.js
│ │ │ │ └── sparklines.directive.js
│ │ │ ├── colors
│ │ │ │ ├── colors.contant.js
│ │ │ │ ├── colors.module.js
│ │ │ │ └── colors.service.js
│ │ │ ├── core
│ │ │ │ ├── core.config.js
│ │ │ │ ├── core.constants.js
│ │ │ │ ├── core.module.js
│ │ │ │ └── core.run.js
│ │ │ ├── dashboard
│ │ │ │ ├── dashboard.controller.js
│ │ │ │ ├── dashboard.module.js
│ │ │ │ ├── dashboard.v2.controller.js
│ │ │ │ └── dashboard.v3.controller.js
│ │ │ ├── elements
│ │ │ │ ├── carousel.controller.js
│ │ │ │ ├── dialog.controller.js
│ │ │ │ ├── elements.module.js
│ │ │ │ ├── infinite-scroll.controller.js
│ │ │ │ ├── masonry-deck.controller.js
│ │ │ │ ├── navtree.controller.js
│ │ │ │ ├── nestable.controller.js
│ │ │ │ ├── scroll.directive.js
│ │ │ │ ├── sortable.controller.js
│ │ │ │ ├── sweetalert.controller.js
│ │ │ │ ├── toaster.controller.js
│ │ │ │ └── tour.controller.js
│ │ │ ├── extras
│ │ │ │ ├── article.controller.js
│ │ │ │ ├── calendar.controller.js
│ │ │ │ ├── code-editor.controller.js
│ │ │ │ ├── code-editor-loadtree.service.js
│ │ │ │ ├── extras.module.js
│ │ │ │ ├── todo.controller.js
│ │ │ │ └── word-cloud.controller.js
│ │ │ ├── flatdoc
│ │ │ │ ├── flatdoc.directive.js
│ │ │ │ └── flatdoc.module.js
│ │ │ ├── forms
│ │ │ │ ├── color-picker.controller.js
│ │ │ │ ├── filestyle.directive.js
│ │ │ │ ├── form-imgcrop.controller.js
│ │ │ │ ├── forms.controller.js
│ │ │ │ ├── forms.module.js
│ │ │ │ ├── form-validation.controller.js
│ │ │ │ ├── form-wizard.directive.js
│ │ │ │ ├── form-xeditable.controller.js
│ │ │ │ ├── masked.directive.js
│ │ │ │ ├── props.filter.js
│ │ │ │ ├── tags-input.directive.js
│ │ │ │ ├── uiselect.controller.js
│ │ │ │ └── upload.controller.js
│ │ │ ├── icons
│ │ │ │ ├── icons.module.js
│ │ │ │ └── icons-skycons.directive.js
│ │ │ ├── lazyload
│ │ │ │ ├── lazyload.config.js
│ │ │ │ ├── lazyload.constants.js
│ │ │ │ └── lazyload.module.js
│ │ │ ├── loadingbar
│ │ │ │ ├── loadingbar.config.js
│ │ │ │ ├── loadingbar.module.js
│ │ │ │ └── loadingbar.run.js
│ │ │ ├── locale
│ │ │ │ ├── locale.config.js
│ │ │ │ ├── locale.controller.js
│ │ │ │ └── locale.module.js
│ │ │ ├── mailbox
│ │ │ │ ├── mailbox.controller.js
│ │ │ │ ├── mailbox.module.js
│ │ │ │ ├── mailfolder.controller.js
│ │ │ │ ├── mails.service.js
│ │ │ │ └── mailview.controller.js
│ │ │ ├── maps
│ │ │ │ ├── maps-google.controller.js
│ │ │ │ ├── maps-google-modal.controller.js
│ │ │ │ ├── maps.module.js
│ │ │ │ ├── vector-map.directive.js
│ │ │ │ ├── vector-maps.controller.js
│ │ │ │ └── vector-map.service.js
│ │ │ ├── navsearch
│ │ │ │ ├── navsearch.directive.js
│ │ │ │ ├── navsearch.module.js
│ │ │ │ └── navsearch.service.js
│ │ │ ├── notify
│ │ │ │ ├── notify.controller.js
│ │ │ │ ├── notify.directive.js
│ │ │ │ ├── notify.module.js
│ │ │ │ └── notify.service.js
│ │ │ ├── pages
│ │ │ │ ├── access-login.controller.js
│ │ │ │ ├── access-register.controller.js
│ │ │ │ └── pages.module.js
│ │ │ ├── panels
│ │ │ │ ├── panel-collapse.directive.js
│ │ │ │ ├── panel-dismiss.directive.js
│ │ │ │ ├── panel-refresh.directive.js
│ │ │ │ ├── panels.controller.js
│ │ │ │ ├── panels.module.js
│ │ │ │ ├── panel-tools.directive.js
│ │ │ │ └── portlet.controller.js
│ │ │ ├── preloader
│ │ │ │ ├── preloader.directive.js
│ │ │ │ └── preloader.module.js
│ │ │ ├── routes
│ │ │ │ ├── route-helpers.provider.js
│ │ │ │ ├── routes.config.js
│ │ │ │ └── routes.module.js
│ │ │ ├── settings
│ │ │ │ ├── settings.module.js
│ │ │ │ └── settings.run.js
│ │ │ ├── sidebar
│ │ │ │ ├── sidebar.controller.js
│ │ │ │ ├── sidebar.directive.js
│ │ │ │ ├── sidebar.module.js
│ │ │ │ ├── sidebar.service.js
│ │ │ │ └── sidebar.userblock.controller.js
│ │ │ ├── tables
│ │ │ │ ├── angular-grid.controller.js
│ │ │ │ ├── datatable.controller.js
│ │ │ │ ├── ngtable.controller.js
│ │ │ │ ├── ngtable-data.service.js
│ │ │ │ ├── tables.module.js
│ │ │ │ ├── table-xeditable.controller.js
│ │ │ │ └── uigrid.controller.js
│ │ │ ├── translate
│ │ │ │ ├── translate.config.js
│ │ │ │ ├── translate.module.js
│ │ │ │ └── translate.run.js
│ │ │ └── utils
│ │ │ ├── animate-enabled.directive.js
│ │ │ ├── browser.service.js
│ │ │ ├── clear-storage.directive.js
│ │ │ ├── fullscreen.directive.js
│ │ │ ├── load-css.directive.js
│ │ │ ├── now.directive.js
│ │ │ ├── table-checkall.directive.js
│ │ │ ├── trigger-resize.directive.js
│ │ │ ├── utils.module.js
│ │ │ └── utils.service.js
│ │ ├── Server
│ │ │ ├── ag-owinners.json
│ │ │ ├── chart
│ │ │ │ ├── area.json
│ │ │ │ ├── bar.json
│ │ │ │ ├── barstacked.json
│ │ │ │ ├── barstackedv2.json
│ │ │ │ ├── donut.json
│ │ │ │ ├── line.json
│ │ │ │ ├── pie.json
│ │ │ │ ├── realtime.json
│ │ │ │ ├── spline.json
│ │ │ │ ├── splinev2.json
│ │ │ │ └── splinev3.json
│ │ │ ├── chosen-states.json
│ │ │ ├── cities.json
│ │ │ ├── datatable.json
│ │ │ ├── editor
│ │ │ │ ├── filetree.json
│ │ │ │ └── source
│ │ │ │ ├── another.html
│ │ │ │ ├── css
│ │ │ │ │ └── style.css
│ │ │ │ ├── index.html
│ │ │ │ └── js
│ │ │ │ └── script.js
│ │ │ ├── mails.json
│ │ │ ├── ng-grid-data.json
│ │ │ ├── readme.md
│ │ │ ├── table-data.json
│ │ │ ├── treedata.json
│ │ │ ├── uigrid-100.json
│ │ │ ├── uigrid-complex.json
│ │ │ ├── upload.php
│ │ │ └── xeditable-groups.json
│ │ ├── Sidebar
│ │ │ └── sidebar-menu.json
│ │ ├── Startup.cs
│ │ ├── Vendor
│ │ │ ├── ag-grid
│ │ │ │ └── dist
│ │ │ │ ├── ag-grid.js
│ │ │ │ └── styles
│ │ │ │ ├── ag-grid.css
│ │ │ │ ├── theme-dark.css
│ │ │ │ └── theme-fresh.css
│ │ │ ├── angular
│ │ │ │ └── angular.js
│ │ │ ├── angular-animate
│ │ │ │ └── angular-animate.js
│ │ │ ├── angular-bootstrap
│ │ │ │ └── ui-bootstrap-tpls.js
│ │ │ ├── angular-bootstrap-colorpicker
│ │ │ │ ├── css
│ │ │ │ │ └── colorpicker.css
│ │ │ │ ├── img
│ │ │ │ │ ├── alpha.png
│ │ │ │ │ ├── hue.png
│ │ │ │ │ └── saturation.png
│ │ │ │ └── js
│ │ │ │ └── bootstrap-colorpicker-module.js
│ │ │ ├── angular-bootstrap-nav-tree
│ │ │ │ └── dist
│ │ │ │ ├── abn_tree.css
│ │ │ │ └── abn_tree_directive.js
│ │ │ ├── angular-bootstrap-slider
│ │ │ │ └── slider.js
│ │ │ ├── angular-bootstrap-tour
│ │ │ │ └── dist
│ │ │ │ └── angular-bootstrap-tour.js
│ │ │ ├── angular-carousel
│ │ │ │ └── dist
│ │ │ │ ├── angular-carousel.css
│ │ │ │ └── angular-carousel.js
│ │ │ ├── angular-chartist.js
│ │ │ │ └── dist
│ │ │ │ └── angular-chartist.js
│ │ │ ├── angular-chart.js
│ │ │ │ └── dist
│ │ │ │ └── angular-chart.js
│ │ │ ├── angular-chosen-localytics
│ │ │ │ └── dist
│ │ │ │ └── angular-chosen.js
│ │ │ ├── angular-cookies
│ │ │ │ └── angular-cookies.js
│ │ │ ├── angular-datatables
│ │ │ │ └── dist
│ │ │ │ ├── angular-datatables.js
│ │ │ │ ├── angular-datatables.min.js
│ │ │ │ ├── css
│ │ │ │ │ ├── angular-datatables.css
│ │ │ │ │ └── angular-datatables.min.css
│ │ │ │ └── plugins
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── angular-datatables.bootstrap.js
│ │ │ │ │ ├── angular-datatables.bootstrap.min.js
│ │ │ │ │ └── datatables.bootstrap.min.css
│ │ │ │ ├── buttons
│ │ │ │ │ ├── angular-datatables.buttons.js
│ │ │ │ │ └── angular-datatables.buttons.min.js
│ │ │ │ ├── colreorder
│ │ │ │ │ ├── angular-datatables.colreorder.js
│ │ │ │ │ └── angular-datatables.colreorder.min.js
│ │ │ │ ├── columnfilter
│ │ │ │ │ ├── angular-datatables.columnfilter.js
│ │ │ │ │ └── angular-datatables.columnfilter.min.js
│ │ │ │ ├── colvis
│ │ │ │ │ ├── angular-datatables.colvis.js
│ │ │ │ │ └── angular-datatables.colvis.min.js
│ │ │ │ ├── fixedcolumns
│ │ │ │ │ ├── angular-datatables.fixedcolumns.js
│ │ │ │ │ └── angular-datatables.fixedcolumns.min.js
│ │ │ │ ├── fixedheader
│ │ │ │ │ ├── angular-datatables.fixedheader.js
│ │ │ │ │ └── angular-datatables.fixedheader.min.js
│ │ │ │ ├── light-columnfilter
│ │ │ │ │ ├── angular-datatables.light-columnfilter.js
│ │ │ │ │ └── angular-datatables.light-columnfilter.min.js
│ │ │ │ ├── scroller
│ │ │ │ │ ├── angular-datatables.scroller.js
│ │ │ │ │ └── angular-datatables.scroller.min.js
│ │ │ │ ├── select
│ │ │ │ │ ├── angular-datatables.select.js
│ │ │ │ │ └── angular-datatables.select.min.js
│ │ │ │ └── tabletools
│ │ │ │ ├── angular-datatables.tabletools.js
│ │ │ │ └── angular-datatables.tabletools.min.js
│ │ │ ├── angular-deckgrid
│ │ │ │ └── angular-deckgrid.js
│ │ │ ├── angular-dynamic-locale
│ │ │ │ └── dist
│ │ │ │ └── tmhDynamicLocale.js
│ │ │ ├── angular-file-upload
│ │ │ │ └── dist
│ │ │ │ └── angular-file-upload.js
│ │ │ ├── angular-i18n
│ │ │ │ ├── angular-locale_ar.js
│ │ │ │ ├── angular-locale_de.js
│ │ │ │ ├── angular-locale_en.js
│ │ │ │ ├── angular-locale_es.js
│ │ │ │ ├── angular-locale_fr.js
│ │ │ │ ├── angular-locale_ja.js
│ │ │ │ ├── angular-locale_ko.js
│ │ │ │ └── angular-locale_zh.js
│ │ │ ├── angular-jqcloud
│ │ │ │ └── angular-jqcloud.js
│ │ │ ├── angularjs-toaster
│ │ │ │ ├── toaster.css
│ │ │ │ └── toaster.js
│ │ │ ├── angular-knob
│ │ │ │ └── src
│ │ │ │ └── angular-knob.js
│ │ │ ├── angular-loading-bar
│ │ │ │ └── build
│ │ │ │ └── loading-bar.js
│ │ │ ├── angular-resource
│ │ │ │ └── angular-resource.js
│ │ │ ├── angular-rickshaw
│ │ │ │ └── rickshaw.js
│ │ │ ├── angular-route
│ │ │ │ └── angular-route.js
│ │ │ ├── angular-sanitize
│ │ │ │ └── angular-sanitize.js
│ │ │ ├── angular-summernote
│ │ │ │ └── dist
│ │ │ │ └── angular-summernote.js
│ │ │ ├── angular-sweetalert
│ │ │ │ └── SweetAlert.js
│ │ │ ├── angular-touch
│ │ │ │ └── angular-touch.js
│ │ │ ├── angular-translate
│ │ │ │ └── angular-translate.js
│ │ │ ├── angular-translate-loader-static-files
│ │ │ │ └── angular-translate-loader-static-files.js
│ │ │ ├── angular-translate-loader-url
│ │ │ │ └── angular-translate-loader-url.js
│ │ │ ├── angular-translate-storage-cookie
│ │ │ │ └── angular-translate-storage-cookie.js
│ │ │ ├── angular-translate-storage-local
│ │ │ │ └── angular-translate-storage-local.js
│ │ │ ├── angular-ui-calendar
│ │ │ │ └── src
│ │ │ │ └── calendar.js
│ │ │ ├── angular-ui-codemirror
│ │ │ │ └── ui-codemirror.js
│ │ │ ├── angular-ui-event
│ │ │ │ └── dist
│ │ │ │ └── event.js
│ │ │ ├── angular-ui-grid
│ │ │ │ ├── bower.json
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── fontello.eot
│ │ │ │ ├── fontello.svg
│ │ │ │ ├── fontello.ttf
│ │ │ │ ├── fontello.woff
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ ├── README.md
│ │ │ │ ├── ui-grid.css
│ │ │ │ ├── ui-grid.eot
│ │ │ │ ├── ui-grid.js
│ │ │ │ ├── ui-grid.min.css
│ │ │ │ ├── ui-grid.min.js
│ │ │ │ ├── ui-grid.svg
│ │ │ │ ├── ui-grid.ttf
│ │ │ │ └── ui-grid.woff
│ │ │ ├── angular-ui-indeterminate
│ │ │ │ └── dist
│ │ │ │ └── indeterminate.js
│ │ │ ├── angular-ui-map
│ │ │ │ └── ui-map.js
│ │ │ ├── angular-ui-mask
│ │ │ │ └── dist
│ │ │ │ └── mask.js
│ │ │ ├── angular-ui-router
│ │ │ │ └── release
│ │ │ │ └── angular-ui-router.js
│ │ │ ├── angular-ui-scroll
│ │ │ │ └── dist
│ │ │ │ └── ui-scroll.js
│ │ │ ├── angular-ui-scrollpoint
│ │ │ │ └── dist
│ │ │ │ └── scrollpoint.js
│ │ │ ├── angular-ui-select
│ │ │ │ └── dist
│ │ │ │ ├── select.css
│ │ │ │ └── select.js
│ │ │ ├── angular-ui-sortable
│ │ │ │ └── sortable.js
│ │ │ ├── angular-ui-uploader
│ │ │ │ └── dist
│ │ │ │ └── uploader.js
│ │ │ ├── angular-ui-utils
│ │ │ │ └── index.js
│ │ │ ├── angular-ui-validate
│ │ │ │ └── dist
│ │ │ │ └── validate.js
│ │ │ ├── angular-xeditable
│ │ │ │ └── dist
│ │ │ │ ├── css
│ │ │ │ │ └── xeditable.css
│ │ │ │ └── js
│ │ │ │ └── xeditable.js
│ │ │ ├── animate.css
│ │ │ │ └── animate.min.css
│ │ │ ├── animo.js
│ │ │ │ └── animo.js
│ │ │ ├── bootstrap
│ │ │ │ └── js
│ │ │ │ ├── affix.js
│ │ │ │ ├── alert.js
│ │ │ │ ├── button.js
│ │ │ │ ├── carousel.js
│ │ │ │ ├── collapse.js
│ │ │ │ ├── dropdown.js
│ │ │ │ ├── modal.js
│ │ │ │ ├── popover.js
│ │ │ │ ├── scrollspy.js
│ │ │ │ ├── tab.js
│ │ │ │ ├── tooltip.js
│ │ │ │ └── transition.js
│ │ │ ├── bootstrap-filestyle
│ │ │ │ └── src
│ │ │ │ └── bootstrap-filestyle.js
│ │ │ ├── bootstrap-tagsinput
│ │ │ │ └── dist
│ │ │ │ ├── bootstrap-tagsinput.css
│ │ │ │ └── bootstrap-tagsinput.min.js
│ │ │ ├── bootstrap-tour
│ │ │ │ └── build
│ │ │ │ ├── css
│ │ │ │ │ └── bootstrap-tour.css
│ │ │ │ └── js
│ │ │ │ └── bootstrap-tour-standalone.js
│ │ │ ├── bootstrap-wysiwyg
│ │ │ │ ├── bootstrap-wysiwyg.js
│ │ │ │ └── external
│ │ │ │ └── jquery.hotkeys.js
│ │ │ ├── chartist
│ │ │ │ └── dist
│ │ │ │ ├── chartist.js
│ │ │ │ └── chartist.min.css
│ │ │ ├── chart.js
│ │ │ │ └── dist
│ │ │ │ └── Chart.js
│ │ │ ├── chosen_v1.2.0
│ │ │ │ ├── chosen.jquery.min.js
│ │ │ │ ├── chosen.min.css
│ │ │ │ ├── chosen-sprite@2x.png
│ │ │ │ └── chosen-sprite.png
│ │ │ ├── codemirror
│ │ │ │ ├── addon
│ │ │ │ │ └── mode
│ │ │ │ │ └── overlay.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── codemirror.css
│ │ │ │ │ └── codemirror.js
│ │ │ │ ├── mode
│ │ │ │ │ ├── apl
│ │ │ │ │ │ └── apl.js
│ │ │ │ │ ├── asciiarmor
│ │ │ │ │ │ └── asciiarmor.js
│ │ │ │ │ ├── asn.1
│ │ │ │ │ │ └── asn.1.js
│ │ │ │ │ ├── asterisk
│ │ │ │ │ │ └── asterisk.js
│ │ │ │ │ ├── brainfuck
│ │ │ │ │ │ └── brainfuck.js
│ │ │ │ │ ├── clike
│ │ │ │ │ │ └── clike.js
│ │ │ │ │ ├── clojure
│ │ │ │ │ │ └── clojure.js
│ │ │ │ │ ├── cmake
│ │ │ │ │ │ └── cmake.js
│ │ │ │ │ ├── cobol
│ │ │ │ │ │ └── cobol.js
│ │ │ │ │ ├── coffeescript
│ │ │ │ │ │ └── coffeescript.js
│ │ │ │ │ ├── commonlisp
│ │ │ │ │ │ └── commonlisp.js
│ │ │ │ │ ├── crystal
│ │ │ │ │ │ └── crystal.js
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── css.js
│ │ │ │ │ ├── cypher
│ │ │ │ │ │ └── cypher.js
│ │ │ │ │ ├── d
│ │ │ │ │ │ └── d.js
│ │ │ │ │ ├── dart
│ │ │ │ │ │ └── dart.js
│ │ │ │ │ ├── diff
│ │ │ │ │ │ └── diff.js
│ │ │ │ │ ├── django
│ │ │ │ │ │ └── django.js
│ │ │ │ │ ├── dockerfile
│ │ │ │ │ │ └── dockerfile.js
│ │ │ │ │ ├── dtd
│ │ │ │ │ │ └── dtd.js
│ │ │ │ │ ├── dylan
│ │ │ │ │ │ └── dylan.js
│ │ │ │ │ ├── ebnf
│ │ │ │ │ │ └── ebnf.js
│ │ │ │ │ ├── ecl
│ │ │ │ │ │ └── ecl.js
│ │ │ │ │ ├── eiffel
│ │ │ │ │ │ └── eiffel.js
│ │ │ │ │ ├── elm
│ │ │ │ │ │ └── elm.js
│ │ │ │ │ ├── erlang
│ │ │ │ │ │ └── erlang.js
│ │ │ │ │ ├── factor
│ │ │ │ │ │ └── factor.js
│ │ │ │ │ ├── fcl
│ │ │ │ │ │ └── fcl.js
│ │ │ │ │ ├── forth
│ │ │ │ │ │ └── forth.js
│ │ │ │ │ ├── fortran
│ │ │ │ │ │ └── fortran.js
│ │ │ │ │ ├── gas
│ │ │ │ │ │ └── gas.js
│ │ │ │ │ ├── gfm
│ │ │ │ │ │ └── gfm.js
│ │ │ │ │ ├── gherkin
│ │ │ │ │ │ └── gherkin.js
│ │ │ │ │ ├── go
│ │ │ │ │ │ └── go.js
│ │ │ │ │ ├── groovy
│ │ │ │ │ │ └── groovy.js
│ │ │ │ │ ├── haml
│ │ │ │ │ │ └── haml.js
│ │ │ │ │ ├── handlebars
│ │ │ │ │ │ └── handlebars.js
│ │ │ │ │ ├── haskell
│ │ │ │ │ │ └── haskell.js
│ │ │ │ │ ├── haskell-literate
│ │ │ │ │ │ └── haskell-literate.js
│ │ │ │ │ ├── haxe
│ │ │ │ │ │ └── haxe.js
│ │ │ │ │ ├── htmlembedded
│ │ │ │ │ │ └── htmlembedded.js
│ │ │ │ │ ├── htmlmixed
│ │ │ │ │ │ └── htmlmixed.js
│ │ │ │ │ ├── http
│ │ │ │ │ │ └── http.js
│ │ │ │ │ ├── idl
│ │ │ │ │ │ └── idl.js
│ │ │ │ │ ├── javascript
│ │ │ │ │ │ └── javascript.js
│ │ │ │ │ ├── jinja2
│ │ │ │ │ │ └── jinja2.js
│ │ │ │ │ ├── jsx
│ │ │ │ │ │ └── jsx.js
│ │ │ │ │ ├── julia
│ │ │ │ │ │ └── julia.js
│ │ │ │ │ ├── livescript
│ │ │ │ │ │ └── livescript.js
│ │ │ │ │ ├── lua
│ │ │ │ │ │ └── lua.js
│ │ │ │ │ ├── markdown
│ │ │ │ │ │ └── markdown.js
│ │ │ │ │ ├── mathematica
│ │ │ │ │ │ └── mathematica.js
│ │ │ │ │ ├── mbox
│ │ │ │ │ │ └── mbox.js
│ │ │ │ │ ├── meta.js
│ │ │ │ │ ├── mirc
│ │ │ │ │ │ └── mirc.js
│ │ │ │ │ ├── mllike
│ │ │ │ │ │ └── mllike.js
│ │ │ │ │ ├── modelica
│ │ │ │ │ │ └── modelica.js
│ │ │ │ │ ├── mscgen
│ │ │ │ │ │ └── mscgen.js
│ │ │ │ │ ├── mumps
│ │ │ │ │ │ └── mumps.js
│ │ │ │ │ ├── nginx
│ │ │ │ │ │ └── nginx.js
│ │ │ │ │ ├── nsis
│ │ │ │ │ │ └── nsis.js
│ │ │ │ │ ├── ntriples
│ │ │ │ │ │ └── ntriples.js
│ │ │ │ │ ├── octave
│ │ │ │ │ │ └── octave.js
│ │ │ │ │ ├── oz
│ │ │ │ │ │ └── oz.js
│ │ │ │ │ ├── pascal
│ │ │ │ │ │ └── pascal.js
│ │ │ │ │ ├── pegjs
│ │ │ │ │ │ └── pegjs.js
│ │ │ │ │ ├── perl
│ │ │ │ │ │ └── perl.js
│ │ │ │ │ ├── php
│ │ │ │ │ │ └── php.js
│ │ │ │ │ ├── pig
│ │ │ │ │ │ └── pig.js
│ │ │ │ │ ├── powershell
│ │ │ │ │ │ └── powershell.js
│ │ │ │ │ ├── properties
│ │ │ │ │ │ └── properties.js
│ │ │ │ │ ├── protobuf
│ │ │ │ │ │ └── protobuf.js
│ │ │ │ │ ├── pug
│ │ │ │ │ │ └── pug.js
│ │ │ │ │ ├── puppet
│ │ │ │ │ │ └── puppet.js
│ │ │ │ │ ├── python
│ │ │ │ │ │ └── python.js
│ │ │ │ │ ├── q
│ │ │ │ │ │ └── q.js
│ │ │ │ │ ├── r
│ │ │ │ │ │ └── r.js
│ │ │ │ │ ├── rpm
│ │ │ │ │ │ └── rpm.js
│ │ │ │ │ ├── rst
│ │ │ │ │ │ └── rst.js
│ │ │ │ │ ├── ruby
│ │ │ │ │ │ └── ruby.js
│ │ │ │ │ ├── rust
│ │ │ │ │ │ └── rust.js
│ │ │ │ │ ├── sas
│ │ │ │ │ │ └── sas.js
│ │ │ │ │ ├── sass
│ │ │ │ │ │ └── sass.js
│ │ │ │ │ ├── scheme
│ │ │ │ │ │ └── scheme.js
│ │ │ │ │ ├── shell
│ │ │ │ │ │ └── shell.js
│ │ │ │ │ ├── sieve
│ │ │ │ │ │ └── sieve.js
│ │ │ │ │ ├── slim
│ │ │ │ │ │ └── slim.js
│ │ │ │ │ ├── smalltalk
│ │ │ │ │ │ └── smalltalk.js
│ │ │ │ │ ├── smarty
│ │ │ │ │ │ └── smarty.js
│ │ │ │ │ ├── solr
│ │ │ │ │ │ └── solr.js
│ │ │ │ │ ├── soy
│ │ │ │ │ │ └── soy.js
│ │ │ │ │ ├── sparql
│ │ │ │ │ │ └── sparql.js
│ │ │ │ │ ├── spreadsheet
│ │ │ │ │ │ └── spreadsheet.js
│ │ │ │ │ ├── sql
│ │ │ │ │ │ └── sql.js
│ │ │ │ │ ├── stex
│ │ │ │ │ │ └── stex.js
│ │ │ │ │ ├── stylus
│ │ │ │ │ │ └── stylus.js
│ │ │ │ │ ├── swift
│ │ │ │ │ │ └── swift.js
│ │ │ │ │ ├── tcl
│ │ │ │ │ │ └── tcl.js
│ │ │ │ │ ├── textile
│ │ │ │ │ │ └── textile.js
│ │ │ │ │ ├── tiddlywiki
│ │ │ │ │ │ ├── tiddlywiki.css
│ │ │ │ │ │ └── tiddlywiki.js
│ │ │ │ │ ├── tiki
│ │ │ │ │ │ ├── tiki.css
│ │ │ │ │ │ └── tiki.js
│ │ │ │ │ ├── toml
│ │ │ │ │ │ └── toml.js
│ │ │ │ │ ├── tornado
│ │ │ │ │ │ └── tornado.js
│ │ │ │ │ ├── troff
│ │ │ │ │ │ └── troff.js
│ │ │ │ │ ├── ttcn
│ │ │ │ │ │ └── ttcn.js
│ │ │ │ │ ├── ttcn-cfg
│ │ │ │ │ │ └── ttcn-cfg.js
│ │ │ │ │ ├── turtle
│ │ │ │ │ │ └── turtle.js
│ │ │ │ │ ├── twig
│ │ │ │ │ │ └── twig.js
│ │ │ │ │ ├── vb
│ │ │ │ │ │ └── vb.js
│ │ │ │ │ ├── vbscript
│ │ │ │ │ │ └── vbscript.js
│ │ │ │ │ ├── velocity
│ │ │ │ │ │ └── velocity.js
│ │ │ │ │ ├── verilog
│ │ │ │ │ │ └── verilog.js
│ │ │ │ │ ├── vhdl
│ │ │ │ │ │ └── vhdl.js
│ │ │ │ │ ├── vue
│ │ │ │ │ │ └── vue.js
│ │ │ │ │ ├── webidl
│ │ │ │ │ │ └── webidl.js
│ │ │ │ │ ├── xml
│ │ │ │ │ │ └── xml.js
│ │ │ │ │ ├── xquery
│ │ │ │ │ │ └── xquery.js
│ │ │ │ │ ├── yacas
│ │ │ │ │ │ └── yacas.js
│ │ │ │ │ ├── yaml
│ │ │ │ │ │ └── yaml.js
│ │ │ │ │ ├── yaml-frontmatter
│ │ │ │ │ │ └── yaml-frontmatter.js
│ │ │ │ │ └── z80
│ │ │ │ │ └── z80.js
│ │ │ │ └── theme
│ │ │ │ ├── 3024-day.css
│ │ │ │ ├── 3024-night.css
│ │ │ │ ├── abcdef.css
│ │ │ │ ├── ambiance.css
│ │ │ │ ├── ambiance-mobile.css
│ │ │ │ ├── base16-dark.css
│ │ │ │ ├── base16-light.css
│ │ │ │ ├── bespin.css
│ │ │ │ ├── blackboard.css
│ │ │ │ ├── cobalt.css
│ │ │ │ ├── colorforth.css
│ │ │ │ ├── dracula.css
│ │ │ │ ├── duotone-dark.css
│ │ │ │ ├── duotone-light.css
│ │ │ │ ├── eclipse.css
│ │ │ │ ├── elegant.css
│ │ │ │ ├── erlang-dark.css
│ │ │ │ ├── hopscotch.css
│ │ │ │ ├── icecoder.css
│ │ │ │ ├── isotope.css
│ │ │ │ ├── lesser-dark.css
│ │ │ │ ├── liquibyte.css
│ │ │ │ ├── material.css
│ │ │ │ ├── mbo.css
│ │ │ │ ├── mdn-like.css
│ │ │ │ ├── midnight.css
│ │ │ │ ├── monokai.css
│ │ │ │ ├── neat.css
│ │ │ │ ├── neo.css
│ │ │ │ ├── night.css
│ │ │ │ ├── panda-syntax.css
│ │ │ │ ├── paraiso-dark.css
│ │ │ │ ├── paraiso-light.css
│ │ │ │ ├── pastel-on-dark.css
│ │ │ │ ├── railscasts.css
│ │ │ │ ├── rubyblue.css
│ │ │ │ ├── seti.css
│ │ │ │ ├── solarized.css
│ │ │ │ ├── the-matrix.css
│ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ ├── ttcn.css
│ │ │ │ ├── twilight.css
│ │ │ │ ├── vibrant-ink.css
│ │ │ │ ├── xq-dark.css
│ │ │ │ ├── xq-light.css
│ │ │ │ ├── yeti.css
│ │ │ │ └── zenburn.css
│ │ │ ├── d3
│ │ │ │ └── d3.min.js
│ │ │ ├── datatables
│ │ │ │ └── media
│ │ │ │ ├── css
│ │ │ │ │ └── jquery.dataTables.css
│ │ │ │ ├── images
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── sort_asc_disabled.png
│ │ │ │ │ ├── sort_asc.png
│ │ │ │ │ ├── sort_both.png
│ │ │ │ │ ├── sort_desc_disabled.png
│ │ │ │ │ ├── sort_desc.png
│ │ │ │ │ └── Sorting icons.psd
│ │ │ │ └── js
│ │ │ │ └── jquery.dataTables.js
│ │ │ ├── datatables-buttons
│ │ │ │ ├── css
│ │ │ │ │ ├── buttons.bootstrap4.scss
│ │ │ │ │ ├── buttons.bootstrap.scss
│ │ │ │ │ ├── buttons.dataTables.scss
│ │ │ │ │ ├── buttons.foundation.scss
│ │ │ │ │ ├── buttons.jqueryui.scss
│ │ │ │ │ ├── buttons.semanticui.scss
│ │ │ │ │ ├── common.scss
│ │ │ │ │ └── mixins.scss
│ │ │ │ └── js
│ │ │ │ ├── buttons.bootstrap4.js
│ │ │ │ ├── buttons.bootstrap.js
│ │ │ │ ├── buttons.colVis.js
│ │ │ │ ├── buttons.flash.js
│ │ │ │ ├── buttons.foundation.js
│ │ │ │ ├── buttons.html5.js
│ │ │ │ ├── buttons.jqueryui.js
│ │ │ │ ├── buttons.print.js
│ │ │ │ ├── buttons.semanticui.js
│ │ │ │ └── dataTables.buttons.js
│ │ │ ├── fastclick
│ │ │ │ └── lib
│ │ │ │ └── fastclick.js
│ │ │ ├── flatdoc
│ │ │ │ └── flatdoc.js
│ │ │ ├── flot
│ │ │ │ ├── jquery.flot.categories.js
│ │ │ │ ├── jquery.flot.js
│ │ │ │ ├── jquery.flot.pie.js
│ │ │ │ ├── jquery.flot.resize.js
│ │ │ │ └── jquery.flot.time.js
│ │ │ ├── flot-spline
│ │ │ │ └── js
│ │ │ │ └── jquery.flot.spline.min.js
│ │ │ ├── flot.tooltip
│ │ │ │ └── js
│ │ │ │ └── jquery.flot.tooltip.min.js
│ │ │ ├── fontawesome
│ │ │ │ ├── css
│ │ │ │ │ └── font-awesome.min.css
│ │ │ │ └── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ └── fontawesome-webfont.woff2
│ │ │ ├── fullcalendar
│ │ │ │ └── dist
│ │ │ │ ├── fullcalendar.css
│ │ │ │ ├── fullcalendar.min.js
│ │ │ │ └── gcal.js
│ │ │ ├── ika.jvectormap
│ │ │ │ ├── jquery-jvectormap-1.2.2.css
│ │ │ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ │ │ ├── jquery-jvectormap-us-mill-en.js
│ │ │ │ └── jquery-jvectormap-world-mill-en.js
│ │ │ ├── jqcloud2
│ │ │ │ └── dist
│ │ │ │ ├── jqcloud.css
│ │ │ │ └── jqcloud.js
│ │ │ ├── jquery
│ │ │ │ └── dist
│ │ │ │ └── jquery.js
│ │ │ ├── jquery.browser
│ │ │ │ └── dist
│ │ │ │ └── jquery.browser.js
│ │ │ ├── jquery.easy-pie-chart
│ │ │ │ └── dist
│ │ │ │ └── angular.easypiechart.min.js
│ │ │ ├── jquery.inputmask
│ │ │ │ └── dist
│ │ │ │ └── jquery.inputmask.bundle.js
│ │ │ ├── jquery-knob
│ │ │ │ └── dist
│ │ │ │ └── jquery.knob.min.js
│ │ │ ├── jquery-ui
│ │ │ │ ├── jquery-ui.min.js
│ │ │ │ └── ui
│ │ │ │ ├── core.js
│ │ │ │ ├── data.js
│ │ │ │ ├── disable-selection.js
│ │ │ │ ├── effect.js
│ │ │ │ ├── escape-selector.js
│ │ │ │ ├── focusable.js
│ │ │ │ ├── form.js
│ │ │ │ ├── form-reset-mixin.js
│ │ │ │ ├── ie.js
│ │ │ │ ├── jquery-1-7.js
│ │ │ │ ├── keycode.js
│ │ │ │ ├── labels.js
│ │ │ │ ├── plugin.js
│ │ │ │ ├── position.js
│ │ │ │ ├── safe-active-element.js
│ │ │ │ ├── safe-blur.js
│ │ │ │ ├── scroll-parent.js
│ │ │ │ ├── tabbable.js
│ │ │ │ ├── unique-id.js
│ │ │ │ ├── version.js
│ │ │ │ └── widget.js
│ │ │ ├── jqueryui-touch-punch
│ │ │ │ └── jquery.ui.touch-punch.min.js
│ │ │ ├── loaders.css
│ │ │ │ └── loaders.css
│ │ │ ├── load-google-maps
│ │ │ │ └── load-google-maps.js
│ │ │ ├── marked
│ │ │ │ └── lib
│ │ │ │ └── marked.js
│ │ │ ├── matchMedia
│ │ │ │ └── matchMedia.js
│ │ │ ├── modernizr
│ │ │ │ └── modernizr.custom.js
│ │ │ ├── moment
│ │ │ │ └── min
│ │ │ │ └── moment-with-locales.min.js
│ │ │ ├── morris.js
│ │ │ │ ├── morris.css
│ │ │ │ └── morris.js
│ │ │ ├── nestable
│ │ │ │ └── jquery.nestable.js
│ │ │ ├── ngDialog
│ │ │ │ ├── css
│ │ │ │ │ ├── ngDialog.min.css
│ │ │ │ │ └── ngDialog-theme-default.min.css
│ │ │ │ └── js
│ │ │ │ └── ngDialog.min.js
│ │ │ ├── ng-img-crop
│ │ │ │ └── compile
│ │ │ │ └── unminified
│ │ │ │ ├── ng-img-crop.css
│ │ │ │ └── ng-img-crop.js
│ │ │ ├── ngInfiniteScroll
│ │ │ │ └── build
│ │ │ │ └── ng-infinite-scroll.js
│ │ │ ├── ng-nestable
│ │ │ │ └── src
│ │ │ │ └── angular-nestable.js
│ │ │ ├── ngstorage
│ │ │ │ └── ngStorage.js
│ │ │ ├── ng-table
│ │ │ │ └── dist
│ │ │ │ ├── ng-table.min.css
│ │ │ │ └── ng-table.min.js
│ │ │ ├── ng-table-export
│ │ │ │ └── ng-table-export.js
│ │ │ ├── ngWig
│ │ │ │ └── dist
│ │ │ │ └── ng-wig.min.js
│ │ │ ├── oclazyload
│ │ │ │ └── dist
│ │ │ │ └── ocLazyLoad.js
│ │ │ ├── raphael
│ │ │ │ └── raphael.js
│ │ │ ├── rickshaw
│ │ │ │ ├── rickshaw.js
│ │ │ │ └── rickshaw.min.css
│ │ │ ├── screenfull
│ │ │ │ └── dist
│ │ │ │ └── screenfull.js
│ │ │ ├── seiyria-bootstrap-slider
│ │ │ │ └── dist
│ │ │ │ ├── bootstrap-slider.min.js
│ │ │ │ └── css
│ │ │ │ └── bootstrap-slider.min.css
│ │ │ ├── simple-line-icons
│ │ │ │ ├── css
│ │ │ │ │ └── simple-line-icons.css
│ │ │ │ └── fonts
│ │ │ │ ├── Simple-Line-Icons.eot
│ │ │ │ ├── Simple-Line-Icons.svg
│ │ │ │ ├── Simple-Line-Icons.ttf
│ │ │ │ ├── Simple-Line-Icons.woff
│ │ │ │ └── Simple-Line-Icons.woff2
│ │ │ ├── skycons
│ │ │ │ └── skycons.js
│ │ │ ├── slimScroll
│ │ │ │ └── jquery.slimscroll.min.js
│ │ │ ├── sparkline
│ │ │ │ └── index.js
│ │ │ ├── spinkit
│ │ │ │ └── css
│ │ │ │ └── spinkit.css
│ │ │ ├── summernote
│ │ │ │ └── dist
│ │ │ │ ├── font
│ │ │ │ │ ├── summernote.eot
│ │ │ │ │ ├── summernote.ttf
│ │ │ │ │ └── summernote.woff
│ │ │ │ ├── lang
│ │ │ │ │ ├── summernote-ar-AR.js
│ │ │ │ │ ├── summernote-ar-AR.min.js
│ │ │ │ │ ├── summernote-bg-BG.js
│ │ │ │ │ ├── summernote-bg-BG.min.js
│ │ │ │ │ ├── summernote-ca-ES.js
│ │ │ │ │ ├── summernote-ca-ES.min.js
│ │ │ │ │ ├── summernote-cs-CZ.js
│ │ │ │ │ ├── summernote-cs-CZ.min.js
│ │ │ │ │ ├── summernote-da-DK.js
│ │ │ │ │ ├── summernote-da-DK.min.js
│ │ │ │ │ ├── summernote-de-DE.js
│ │ │ │ │ ├── summernote-de-DE.min.js
│ │ │ │ │ ├── summernote-el-GR.js
│ │ │ │ │ ├── summernote-el-GR.min.js
│ │ │ │ │ ├── summernote-es-ES.js
│ │ │ │ │ ├── summernote-es-ES.min.js
│ │ │ │ │ ├── summernote-es-EU.js
│ │ │ │ │ ├── summernote-es-EU.min.js
│ │ │ │ │ ├── summernote-fa-IR.js
│ │ │ │ │ ├── summernote-fa-IR.min.js
│ │ │ │ │ ├── summernote-fi-FI.js
│ │ │ │ │ ├── summernote-fi-FI.min.js
│ │ │ │ │ ├── summernote-fr-FR.js
│ │ │ │ │ ├── summernote-fr-FR.min.js
│ │ │ │ │ ├── summernote-gl-ES.js
│ │ │ │ │ ├── summernote-gl-ES.min.js
│ │ │ │ │ ├── summernote-he-IL.js
│ │ │ │ │ ├── summernote-he-IL.min.js
│ │ │ │ │ ├── summernote-hr-HR.js
│ │ │ │ │ ├── summernote-hr-HR.min.js
│ │ │ │ │ ├── summernote-hu-HU.js
│ │ │ │ │ ├── summernote-hu-HU.min.js
│ │ │ │ │ ├── summernote-id-ID.js
│ │ │ │ │ ├── summernote-id-ID.min.js
│ │ │ │ │ ├── summernote-it-IT.js
│ │ │ │ │ ├── summernote-it-IT.min.js
│ │ │ │ │ ├── summernote-ja-JP.js
│ │ │ │ │ ├── summernote-ja-JP.min.js
│ │ │ │ │ ├── summernote-ko-KR.js
│ │ │ │ │ ├── summernote-ko-KR.min.js
│ │ │ │ │ ├── summernote-lt-LT.js
│ │ │ │ │ ├── summernote-lt-LT.min.js
│ │ │ │ │ ├── summernote-lt-LV.js
│ │ │ │ │ ├── summernote-lt-LV.min.js
│ │ │ │ │ ├── summernote-mn-MN
│ │ │ │ │ ├── summernote-nb-NO.js
│ │ │ │ │ ├── summernote-nb-NO.min.js
│ │ │ │ │ ├── summernote-nl-NL.js
│ │ │ │ │ ├── summernote-nl-NL.min.js
│ │ │ │ │ ├── summernote-pl-PL.js
│ │ │ │ │ ├── summernote-pl-PL.min.js
│ │ │ │ │ ├── summernote-pt-BR.js
│ │ │ │ │ ├── summernote-pt-BR.min.js
│ │ │ │ │ ├── summernote-pt-PT.js
│ │ │ │ │ ├── summernote-pt-PT.min.js
│ │ │ │ │ ├── summernote-ro-RO.js
│ │ │ │ │ ├── summernote-ro-RO.min.js
│ │ │ │ │ ├── summernote-ru-RU.js
│ │ │ │ │ ├── summernote-ru-RU.min.js
│ │ │ │ │ ├── summernote-sk-SK.js
│ │ │ │ │ ├── summernote-sk-SK.min.js
│ │ │ │ │ ├── summernote-sl-SI.js
│ │ │ │ │ ├── summernote-sl-SI.min.js
│ │ │ │ │ ├── summernote-sr-RS.js
│ │ │ │ │ ├── summernote-sr-RS-Latin.js
│ │ │ │ │ ├── summernote-sr-RS-Latin.min.js
│ │ │ │ │ ├── summernote-sr-RS.min.js
│ │ │ │ │ ├── summernote-sv-SE.js
│ │ │ │ │ ├── summernote-sv-SE.min.js
│ │ │ │ │ ├── summernote-ta-IN.js
│ │ │ │ │ ├── summernote-ta-IN.min.js
│ │ │ │ │ ├── summernote-th-TH.js
│ │ │ │ │ ├── summernote-th-TH.min.js
│ │ │ │ │ ├── summernote-tr-TR.js
│ │ │ │ │ ├── summernote-tr-TR.min.js
│ │ │ │ │ ├── summernote-uk-UA.js
│ │ │ │ │ ├── summernote-uk-UA.min.js
│ │ │ │ │ ├── summernote-vi-VN.js
│ │ │ │ │ ├── summernote-vi-VN.min.js
│ │ │ │ │ ├── summernote-zh-CN.js
│ │ │ │ │ ├── summernote-zh-CN.min.js
│ │ │ │ │ ├── summernote-zh-TW.js
│ │ │ │ │ └── summernote-zh-TW.min.js
│ │ │ │ ├── plugin
│ │ │ │ │ ├── databasic
│ │ │ │ │ │ ├── summernote-ext-databasic.css
│ │ │ │ │ │ ├── summernote-ext-databasic.js
│ │ │ │ │ │ ├── summernote-ext-databasic.min.css
│ │ │ │ │ │ └── summernote-ext-databasic.min.js
│ │ │ │ │ ├── hello
│ │ │ │ │ │ ├── summernote-ext-hello.js
│ │ │ │ │ │ └── summernote-ext-hello.min.js
│ │ │ │ │ └── specialchars
│ │ │ │ │ ├── summernote-ext-specialchars.js
│ │ │ │ │ └── summernote-ext-specialchars.min.js
│ │ │ │ ├── summernote.css
│ │ │ │ ├── summernote.js
│ │ │ │ └── summernote.min.js
│ │ │ ├── sweetalert
│ │ │ │ └── dist
│ │ │ │ ├── sweetalert.css
│ │ │ │ └── sweetalert.min.js
│ │ │ ├── weather-icons
│ │ │ │ ├── css
│ │ │ │ │ ├── weather-icons.min.css
│ │ │ │ │ └── weather-icons-wind.min.css
│ │ │ │ └── font
│ │ │ │ ├── weathericons-regular-webfont.eot
│ │ │ │ ├── weathericons-regular-webfont.svg
│ │ │ │ ├── weathericons-regular-webfont.ttf
│ │ │ │ ├── weathericons-regular-webfont.woff
│ │ │ │ └── weathericons-regular-webfont.woff2
│ │ │ └── whirl
│ │ │ └── dist
│ │ │ └── whirl.css
│ │ ├── Views
│ │ │ ├── Account
│ │ │ │ ├── ConfirmEmail.cshtml
│ │ │ │ ├── ExternalLoginConfirmation.cshtml
│ │ │ │ ├── ExternalLoginFailure.cshtml
│ │ │ │ ├── _ExternalLoginsListPartial.cshtml
│ │ │ │ ├── ForgotPasswordConfirmation.cshtml
│ │ │ │ ├── ForgotPassword.cshtml
│ │ │ │ ├── Login.cshtml
│ │ │ │ ├── Register.cshtml
│ │ │ │ ├── ResetPasswordConfirmation.cshtml
│ │ │ │ ├── ResetPassword.cshtml
│ │ │ │ ├── SendCode.cshtml
│ │ │ │ └── VerifyCode.cshtml
│ │ │ ├── App
│ │ │ │ ├── Index.cshtml
│ │ │ │ └── Index-Horizontal.cshtml
│ │ │ ├── Blog
│ │ │ │ ├── BlogArticles.cshtml
│ │ │ │ ├── BlogArticleView.cshtml
│ │ │ │ ├── Blog.cshtml
│ │ │ │ └── BlogPost.cshtml
│ │ │ ├── Charts
│ │ │ │ ├── ChartChartist.cshtml
│ │ │ │ ├── ChartFlot.cshtml
│ │ │ │ ├── ChartJs.cshtml
│ │ │ │ ├── ChartMorris.cshtml
│ │ │ │ ├── ChartRadial.cshtml
│ │ │ │ └── ChartRickshaw.cshtml
│ │ │ ├── Dashboard
│ │ │ │ ├── DashboardV1.cshtml
│ │ │ │ ├── DashboardV2.cshtml
│ │ │ │ └── DashboardV3.cshtml
│ │ │ ├── Documentation
│ │ │ │ └── Documentation.cshtml
│ │ │ ├── Ecommerce
│ │ │ │ ├── EcommerceCheckout.cshtml
│ │ │ │ ├── EcommerceOrders.cshtml
│ │ │ │ ├── EcommerceOrderView.cshtml
│ │ │ │ ├── EcommerceProducts.cshtml
│ │ │ │ └── EcommerceProductView.cshtml
│ │ │ ├── Elements
│ │ │ │ ├── Buttons.cshtml
│ │ │ │ ├── Carousel.cshtml
│ │ │ │ ├── Colors.cshtml
│ │ │ │ ├── DropdownAnimations.cshtml
│ │ │ │ ├── Grid.cshtml
│ │ │ │ ├── GridMasonry.cshtml
│ │ │ │ ├── GridMasonryDeckCard.cshtml
│ │ │ │ ├── GridMasonryDeck.cshtml
│ │ │ │ ├── IconsFont.cshtml
│ │ │ │ ├── IconsWeather.cshtml
│ │ │ │ ├── InfiniteScroll.cshtml
│ │ │ │ ├── Interaction.cshtml
│ │ │ │ ├── Localization.cshtml
│ │ │ │ ├── NavTree.cshtml
│ │ │ │ ├── Nestable.cshtml
│ │ │ │ ├── Ngdialog.cshtml
│ │ │ │ ├── NgdialogTemplate.cshtml
│ │ │ │ ├── Notifications.cshtml
│ │ │ │ ├── Panels.cshtml
│ │ │ │ ├── Portlets.cshtml
│ │ │ │ ├── Sortable.cshtml
│ │ │ │ ├── Spinners.cshtml
│ │ │ │ ├── Sweetalert.cshtml
│ │ │ │ ├── Template.cshtml
│ │ │ │ ├── Tour.cshtml
│ │ │ │ └── Typo.cshtml
│ │ │ ├── Extras
│ │ │ │ ├── BugTracker.cshtml
│ │ │ │ ├── Calendar.cshtml
│ │ │ │ ├── CodeEditor.cshtml
│ │ │ │ ├── ContactDetails.cshtml
│ │ │ │ ├── Contacts.cshtml
│ │ │ │ ├── Faq.cshtml
│ │ │ │ ├── FileManager.cshtml
│ │ │ │ ├── Followers.cshtml
│ │ │ │ ├── HelpCenter.cshtml
│ │ │ │ ├── Invoice.cshtml
│ │ │ │ ├── MailboxCompose.cshtml
│ │ │ │ ├── Mailbox.cshtml
│ │ │ │ ├── MailboxInbox.cshtml
│ │ │ │ ├── MailboxView.cshtml
│ │ │ │ ├── Plans.cshtml
│ │ │ │ ├── ProjectDetails.cshtml
│ │ │ │ ├── Projects.cshtml
│ │ │ │ ├── Search.cshtml
│ │ │ │ ├── Settings.cshtml
│ │ │ │ ├── SocialBoard.cshtml
│ │ │ │ ├── TeamViewer.cshtml
│ │ │ │ ├── Timeline.cshtml
│ │ │ │ ├── Todo.cshtml
│ │ │ │ ├── UserProfile.cshtml
│ │ │ │ └── VoteLinks.cshtml
│ │ │ ├── Forms
│ │ │ │ ├── FormExtended.cshtml
│ │ │ │ ├── FormImagecrop.cshtml
│ │ │ │ ├── FormStandard.cshtml
│ │ │ │ ├── FormUiselect.cshtml
│ │ │ │ ├── FormUpload.cshtml
│ │ │ │ ├── FormValidation.cshtml
│ │ │ │ ├── FormWizard.cshtml
│ │ │ │ └── FormXeditable.cshtml
│ │ │ ├── Forum
│ │ │ │ ├── Forum.cshtml
│ │ │ │ ├── ForumDiscussion.cshtml
│ │ │ │ └── ForumTopics.cshtml
│ │ │ ├── Home
│ │ │ │ ├── About.cshtml
│ │ │ │ ├── Contact.cshtml
│ │ │ │ └── Index.cshtml
│ │ │ ├── Manage
│ │ │ │ ├── AddPhoneNumber.cshtml
│ │ │ │ ├── ChangePassword.cshtml
│ │ │ │ ├── Index.cshtml
│ │ │ │ ├── ManageLogins.cshtml
│ │ │ │ ├── SetPassword.cshtml
│ │ │ │ └── VerifyPhoneNumber.cshtml
│ │ │ ├── Maps
│ │ │ │ ├── MapsGoogle.cshtml
│ │ │ │ └── MapsVector.cshtml
│ │ │ ├── Pages
│ │ │ │ ├── Error404.cshtml
│ │ │ │ ├── Error500.cshtml
│ │ │ │ ├── Lock.cshtml
│ │ │ │ ├── Login.cshtml
│ │ │ │ ├── Maintenance.cshtml
│ │ │ │ ├── Page.cshtml
│ │ │ │ ├── Recover.cshtml
│ │ │ │ └── Register.cshtml
│ │ │ ├── Partials
│ │ │ │ ├── Chat.cshtml
│ │ │ │ ├── Footer.cshtml
│ │ │ │ ├── Offsidebar.cshtml
│ │ │ │ ├── Settings.cshtml
│ │ │ │ ├── Sidebar.cshtml
│ │ │ │ ├── TopNavbar.cshtml
│ │ │ │ └── TopNavbarH.cshtml
│ │ │ ├── Shared
│ │ │ │ ├── Error.cshtml
│ │ │ │ ├── _Layout.cshtml
│ │ │ │ ├── Lockout.cshtml
│ │ │ │ └── _LoginPartial.cshtml
│ │ │ ├── SingleView
│ │ │ │ ├── Index.cshtml
│ │ │ │ └── MenuView.cshtml
│ │ │ ├── Tables
│ │ │ │ ├── TableAngulargrid.cshtml
│ │ │ │ ├── TableDatatable.cshtml
│ │ │ │ ├── TableExtended.cshtml
│ │ │ │ ├── TableNgtable.cshtml
│ │ │ │ ├── TableStandard.cshtml
│ │ │ │ ├── TableUigrid.cshtml
│ │ │ │ └── TableXeditable.cshtml
│ │ │ ├── _ViewStart.cshtml
│ │ │ ├── Web.config
│ │ │ └── Widgets
│ │ │ └── Widgets.cshtml
│ │ ├── Web.config
│ │ ├── Web.Debug.config
│ │ └── Web.Release.config
│ └── Angle.sln
├── mvc5-jquery
│ └── Angle
│ ├── Angle
│ │ ├── Angle.csproj
│ │ ├── Angle.csproj.user
│ │ ├── App_Data
│ │ │ ├── Angle.Models.MovieDBContext_log.ldf
│ │ │ └── Angle.Models.MovieDBContext.mdf
│ │ ├── ApplicationInsights.config
│ │ ├── App_Start
│ │ │ ├── BundleConfig.cs
│ │ │ ├── FilterConfig.cs
│ │ │ ├── IdentityConfig.cs
│ │ │ ├── RouteConfig.cs
│ │ │ └── Startup.Auth.cs
│ │ ├── Content
│ │ │ ├── app
│ │ │ │ └── css
│ │ │ │ ├── app.css
│ │ │ │ ├── app-rtl.css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap-rtl.css
│ │ │ │ ├── theme-a.css
│ │ │ │ ├── theme-b.css
│ │ │ │ ├── theme-c.css
│ │ │ │ ├── theme-d.css
│ │ │ │ ├── theme-e.css
│ │ │ │ ├── theme-f.css
│ │ │ │ ├── theme-g.css
│ │ │ │ └── theme-h.css
│ │ │ ├── documentation
│ │ │ │ └── readme.md
│ │ │ ├── i18n
│ │ │ │ ├── site-en.json
│ │ │ │ └── site-es.json
│ │ │ ├── Images
│ │ │ │ ├── bg10.jpg
│ │ │ │ ├── bg1.jpg
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── bg3.jpg
│ │ │ │ ├── bg4.jpg
│ │ │ │ ├── bg5.jpg
│ │ │ │ ├── bg6.jpg
│ │ │ │ ├── bg7.jpg
│ │ │ │ ├── bg8.jpg
│ │ │ │ ├── bg9.jpg
│ │ │ │ ├── bootstrap-colorpicker
│ │ │ │ │ ├── alpha-horizontal.png
│ │ │ │ │ ├── alpha.png
│ │ │ │ │ ├── hue-horizontal.png
│ │ │ │ │ ├── hue.png
│ │ │ │ │ └── saturation.png
│ │ │ │ ├── dummy.png
│ │ │ │ ├── jquery-ui
│ │ │ │ │ └── themes
│ │ │ │ │ └── smoothness
│ │ │ │ │ └── images
│ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ │ ├── lock-bg.jpg
│ │ │ │ ├── logo.png
│ │ │ │ ├── logo-single.png
│ │ │ │ ├── mb-sample.jpg
│ │ │ │ ├── mockup.png
│ │ │ │ ├── profile-bg.jpg
│ │ │ │ └── user
│ │ │ │ ├── 01.jpg
│ │ │ │ ├── 02.jpg
│ │ │ │ ├── 03.jpg
│ │ │ │ ├── 04.jpg
│ │ │ │ ├── 05.jpg
│ │ │ │ ├── 06.jpg
│ │ │ │ ├── 07.jpg
│ │ │ │ ├── 08.jpg
│ │ │ │ ├── 09.jpg
│ │ │ │ ├── 10.jpg
│ │ │ │ ├── 11.jpg
│ │ │ │ ├── 12.jpg
│ │ │ │ └── 13.jpg
│ │ │ ├── Json
│ │ │ │ ├── datatable.json
│ │ │ │ ├── jqgrid.json
│ │ │ │ ├── jqgrid-tree.json
│ │ │ │ ├── xeditable-groups.json
│ │ │ │ └── xeditable.res
│ │ │ └── mvc-override.css
│ │ ├── Controllers
│ │ │ ├── AccountController.cs
│ │ │ ├── BlogController.cs
│ │ │ ├── ChartsController.cs
│ │ │ ├── DashboardController.cs
│ │ │ ├── DocumentationController.cs
│ │ │ ├── EcommerceController.cs
│ │ │ ├── ElementsController.cs
│ │ │ ├── ExtrasController.cs
│ │ │ ├── FormsController.cs
│ │ │ ├── ForumController.cs
│ │ │ ├── HomeController.cs
│ │ │ ├── ManageController.cs
│ │ │ ├── MapsController.cs
│ │ │ ├── MoviesController.cs
│ │ │ ├── MultilevelsController.cs
│ │ │ ├── PagesController.cs
│ │ │ ├── TablesController.cs
│ │ │ └── WidgetsController.cs
│ │ ├── favicon.ico
│ │ ├── Global.asax
│ │ ├── Global.asax.cs
│ │ ├── Helpers
│ │ │ └── HMTLHelperExtensions.cs
│ │ ├── Models
│ │ │ ├── AccountViewModels.cs
│ │ │ ├── IdentityModels.cs
│ │ │ ├── ManageViewModels.cs
│ │ │ └── Movie.cs
│ │ ├── packages.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Scripts
│ │ │ ├── app
│ │ │ │ ├── app.init.js
│ │ │ │ └── modules
│ │ │ │ ├── bootstrap-start.js
│ │ │ │ ├── calendar.js
│ │ │ │ ├── chart-easypie.js
│ │ │ │ ├── chartist.js
│ │ │ │ ├── chart.js
│ │ │ │ ├── chart-knob.js
│ │ │ │ ├── clear-storage.js
│ │ │ │ ├── color-picker.js
│ │ │ │ ├── constants.js
│ │ │ │ ├── easypiechart.js
│ │ │ │ ├── flatdoc.js
│ │ │ │ ├── fullscreen.js
│ │ │ │ ├── gmap.js
│ │ │ │ ├── imagecrop.js
│ │ │ │ ├── load-css.js
│ │ │ │ ├── localize.js
│ │ │ │ ├── maps-vector.js
│ │ │ │ ├── morris.js
│ │ │ │ ├── navbar-search.js
│ │ │ │ ├── notify.js
│ │ │ │ ├── now.js
│ │ │ │ ├── panel-tools.js
│ │ │ │ ├── play-animation.js
│ │ │ │ ├── porlets.js
│ │ │ │ ├── rickshaw.js
│ │ │ │ ├── select2.js
│ │ │ │ ├── sidebar.js
│ │ │ │ ├── skycons.js
│ │ │ │ ├── slimscroll.js
│ │ │ │ ├── sparkline.js
│ │ │ │ ├── sweetalert.js
│ │ │ │ ├── table-checkall.js
│ │ │ │ ├── toggle-state.js
│ │ │ │ ├── tour.js
│ │ │ │ ├── trigger-resize.js
│ │ │ │ └── utils.js
│ │ │ └── demo
│ │ │ ├── demo-dashboard.js
│ │ │ ├── demo-datatable.js
│ │ │ ├── demo-flot.js
│ │ │ ├── demo-forms.js
│ │ │ ├── demo-jqcloud.js
│ │ │ ├── demo-jqgrid.js
│ │ │ ├── demo-nestable.js
│ │ │ ├── demo-panels.js
│ │ │ ├── demo-rtl.js
│ │ │ ├── demo-search.js
│ │ │ ├── demo-sortable.js
│ │ │ ├── demo-upload.js
│ │ │ ├── demo-vector-map.js
│ │ │ ├── demo-wizard.js
│ │ │ └── demo-xeditable.js
│ │ ├── Startup.cs
│ │ ├── Vendor
│ │ │ ├── animate.css
│ │ │ │ └── animate.min.css
│ │ │ ├── animo.js
│ │ │ │ └── animo.js
│ │ │ ├── blueimp-canvas-to-blob
│ │ │ │ └── js
│ │ │ │ └── canvas-to-blob.js
│ │ │ ├── blueimp-file-upload
│ │ │ │ ├── css
│ │ │ │ │ └── jquery.fileupload.css
│ │ │ │ ├── img
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ └── progressbar.gif
│ │ │ │ └── js
│ │ │ │ ├── jquery.fileupload-angular.js
│ │ │ │ ├── jquery.fileupload-audio.js
│ │ │ │ ├── jquery.fileupload-image.js
│ │ │ │ ├── jquery.fileupload-jquery-ui.js
│ │ │ │ ├── jquery.fileupload.js
│ │ │ │ ├── jquery.fileupload-process.js
│ │ │ │ ├── jquery.fileupload-ui.js
│ │ │ │ ├── jquery.fileupload-validate.js
│ │ │ │ ├── jquery.fileupload-video.js
│ │ │ │ └── jquery.iframe-transport.js
│ │ │ ├── blueimp-load-image
│ │ │ │ └── js
│ │ │ │ └── load-image.all.min.js
│ │ │ ├── blueimp-tmpl
│ │ │ │ └── js
│ │ │ │ └── tmpl.js
│ │ │ ├── bootstrap
│ │ │ │ └── dist
│ │ │ │ ├── css
│ │ │ │ │ └── bootstrap.css
│ │ │ │ └── js
│ │ │ │ └── bootstrap.js
│ │ │ ├── bootstrap-filestyle
│ │ │ │ └── src
│ │ │ │ └── bootstrap-filestyle.js
│ │ │ ├── bootstrap-tagsinput
│ │ │ │ └── dist
│ │ │ │ ├── bootstrap-tagsinput.css
│ │ │ │ └── bootstrap-tagsinput.min.js
│ │ │ ├── bootstrap-tour
│ │ │ │ └── build
│ │ │ │ ├── css
│ │ │ │ │ └── bootstrap-tour-standalone.css
│ │ │ │ └── js
│ │ │ │ └── bootstrap-tour-standalone.js
│ │ │ ├── bootstrap-wysiwyg
│ │ │ │ ├── bootstrap-wysiwyg.js
│ │ │ │ └── external
│ │ │ │ └── jquery.hotkeys.js
│ │ │ ├── chartist
│ │ │ │ └── dist
│ │ │ │ ├── chartist.js
│ │ │ │ └── chartist.min.css
│ │ │ ├── Chart.js
│ │ │ │ └── dist
│ │ │ │ └── Chart.js
│ │ │ ├── chosen_v1.2.0
│ │ │ │ ├── chosen.jquery.min.js
│ │ │ │ ├── chosen.min.css
│ │ │ │ ├── chosen-sprite@2x.png
│ │ │ │ └── chosen-sprite.png
│ │ │ ├── cropper
│ │ │ │ └── dist
│ │ │ │ ├── cropper.css
│ │ │ │ └── cropper.js
│ │ │ ├── d3
│ │ │ │ └── d3.min.js
│ │ │ ├── datatables
│ │ │ │ └── media
│ │ │ │ ├── css
│ │ │ │ │ └── dataTables.bootstrap.css
│ │ │ │ ├── images
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── sort_asc_disabled.png
│ │ │ │ │ ├── sort_asc.png
│ │ │ │ │ ├── sort_both.png
│ │ │ │ │ ├── sort_desc_disabled.png
│ │ │ │ │ ├── sort_desc.png
│ │ │ │ │ └── Sorting icons.psd
│ │ │ │ └── js
│ │ │ │ ├── dataTables.bootstrap.js
│ │ │ │ └── jquery.dataTables.min.js
│ │ │ ├── datatables-buttons
│ │ │ │ ├── css
│ │ │ │ │ ├── buttons.bootstrap4.scss
│ │ │ │ │ ├── buttons.bootstrap.scss
│ │ │ │ │ ├── buttons.dataTables.scss
│ │ │ │ │ ├── buttons.foundation.scss
│ │ │ │ │ ├── buttons.jqueryui.scss
│ │ │ │ │ ├── buttons.semanticui.scss
│ │ │ │ │ ├── common.scss
│ │ │ │ │ └── mixins.scss
│ │ │ │ └── js
│ │ │ │ ├── buttons.bootstrap4.js
│ │ │ │ ├── buttons.bootstrap.js
│ │ │ │ ├── buttons.colVis.js
│ │ │ │ ├── buttons.flash.js
│ │ │ │ ├── buttons.foundation.js
│ │ │ │ ├── buttons.html5.js
│ │ │ │ ├── buttons.jqueryui.js
│ │ │ │ ├── buttons.print.js
│ │ │ │ ├── buttons.semanticui.js
│ │ │ │ └── dataTables.buttons.js
│ │ │ ├── datatables-colvis
│ │ │ │ ├── css
│ │ │ │ │ └── dataTables.colVis.css
│ │ │ │ └── js
│ │ │ │ └── dataTables.colVis.js
│ │ │ ├── dataTables.fontAwesome
│ │ │ │ └── index.css
│ │ │ ├── datatables-responsive
│ │ │ │ └── js
│ │ │ │ ├── dataTables.responsive.js
│ │ │ │ └── responsive.bootstrap.js
│ │ │ ├── eonasdan-bootstrap-datetimepicker
│ │ │ │ └── build
│ │ │ │ ├── css
│ │ │ │ │ └── bootstrap-datetimepicker.min.css
│ │ │ │ └── js
│ │ │ │ └── bootstrap-datetimepicker.min.js
│ │ │ ├── fastclick
│ │ │ │ └── lib
│ │ │ │ └── fastclick.js
│ │ │ ├── flatdoc
│ │ │ │ └── flatdoc.js
│ │ │ ├── Flot
│ │ │ │ ├── jquery.flot.categories.js
│ │ │ │ ├── jquery.flot.js
│ │ │ │ ├── jquery.flot.pie.js
│ │ │ │ ├── jquery.flot.resize.js
│ │ │ │ └── jquery.flot.time.js
│ │ │ ├── flot-spline
│ │ │ │ └── js
│ │ │ │ └── jquery.flot.spline.min.js
│ │ │ ├── flot.tooltip
│ │ │ │ └── js
│ │ │ │ └── jquery.flot.tooltip.min.js
│ │ │ ├── fontawesome
│ │ │ │ ├── css
│ │ │ │ │ └── font-awesome.min.css
│ │ │ │ └── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ └── fontawesome-webfont.woff2
│ │ │ ├── fullcalendar
│ │ │ │ └── dist
│ │ │ │ ├── fullcalendar.css
│ │ │ │ ├── fullcalendar.min.js
│ │ │ │ └── gcal.js
│ │ │ ├── html.sortable
│ │ │ │ └── dist
│ │ │ │ └── html.sortable.js
│ │ │ ├── ika.jvectormap
│ │ │ │ ├── jquery-jvectormap-1.2.2.css
│ │ │ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ │ │ ├── jquery-jvectormap-us-mill-en.js
│ │ │ │ └── jquery-jvectormap-world-mill-en.js
│ │ │ ├── jqcloud2
│ │ │ │ └── dist
│ │ │ │ ├── jqcloud.css
│ │ │ │ └── jqcloud.js
│ │ │ ├── jqgrid
│ │ │ │ ├── css
│ │ │ │ │ └── ui.jqgrid.css
│ │ │ │ └── js
│ │ │ │ ├── i18n
│ │ │ │ │ └── grid.locale-en.js
│ │ │ │ └── jquery.jqGrid.js
│ │ │ ├── jquery
│ │ │ │ └── dist
│ │ │ │ └── jquery.js
│ │ │ ├── jquery.easing
│ │ │ │ └── js
│ │ │ │ └── jquery.easing.js
│ │ │ ├── jquery.easy-pie-chart
│ │ │ │ └── dist
│ │ │ │ └── jquery.easypiechart.js
│ │ │ ├── jQuery-gMap
│ │ │ │ └── jquery.gmap.min.js
│ │ │ ├── jquery.inputmask
│ │ │ │ └── dist
│ │ │ │ └── jquery.inputmask.bundle.js
│ │ │ ├── jquery-knob
│ │ │ │ └── js
│ │ │ │ └── jquery.knob.js
│ │ │ ├── jquery-localize-i18n
│ │ │ │ └── dist
│ │ │ │ └── jquery.localize.js
│ │ │ ├── jquery.steps
│ │ │ │ └── build
│ │ │ │ └── jquery.steps.js
│ │ │ ├── jQuery-Storage-API
│ │ │ │ └── jquery.storageapi.js
│ │ │ ├── jquery-ui
│ │ │ │ ├── jquery-ui.js
│ │ │ │ ├── themes
│ │ │ │ │ └── smoothness
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ │ │ ├── jquery-ui.css
│ │ │ │ │ ├── jquery-ui.min.css
│ │ │ │ │ └── theme.css
│ │ │ │ └── ui
│ │ │ │ ├── core.js
│ │ │ │ ├── data.js
│ │ │ │ ├── disable-selection.js
│ │ │ │ ├── effect.js
│ │ │ │ ├── effects
│ │ │ │ │ ├── effect-blind.js
│ │ │ │ │ ├── effect-bounce.js
│ │ │ │ │ ├── effect-clip.js
│ │ │ │ │ ├── effect-drop.js
│ │ │ │ │ ├── effect-explode.js
│ │ │ │ │ ├── effect-fade.js
│ │ │ │ │ ├── effect-fold.js
│ │ │ │ │ ├── effect-highlight.js
│ │ │ │ │ ├── effect-puff.js
│ │ │ │ │ ├── effect-pulsate.js
│ │ │ │ │ ├── effect-scale.js
│ │ │ │ │ ├── effect-shake.js
│ │ │ │ │ ├── effect-size.js
│ │ │ │ │ ├── effect-slide.js
│ │ │ │ │ └── effect-transfer.js
│ │ │ │ ├── escape-selector.js
│ │ │ │ ├── focusable.js
│ │ │ │ ├── form.js
│ │ │ │ ├── form-reset-mixin.js
│ │ │ │ ├── i18n
│ │ │ │ │ ├── datepicker-af.js
│ │ │ │ │ ├── datepicker-ar-DZ.js
│ │ │ │ │ ├── datepicker-ar.js
│ │ │ │ │ ├── datepicker-az.js
│ │ │ │ │ ├── datepicker-be.js
│ │ │ │ │ ├── datepicker-bg.js
│ │ │ │ │ ├── datepicker-bs.js
│ │ │ │ │ ├── datepicker-ca.js
│ │ │ │ │ ├── datepicker-cs.js
│ │ │ │ │ ├── datepicker-cy-GB.js
│ │ │ │ │ ├── datepicker-da.js
│ │ │ │ │ ├── datepicker-de.js
│ │ │ │ │ ├── datepicker-el.js
│ │ │ │ │ ├── datepicker-en-AU.js
│ │ │ │ │ ├── datepicker-en-GB.js
│ │ │ │ │ ├── datepicker-en-NZ.js
│ │ │ │ │ ├── datepicker-eo.js
│ │ │ │ │ ├── datepicker-es.js
│ │ │ │ │ ├── datepicker-et.js
│ │ │ │ │ ├── datepicker-eu.js
│ │ │ │ │ ├── datepicker-fa.js
│ │ │ │ │ ├── datepicker-fi.js
│ │ │ │ │ ├── datepicker-fo.js
│ │ │ │ │ ├── datepicker-fr-CA.js
│ │ │ │ │ ├── datepicker-fr-CH.js
│ │ │ │ │ ├── datepicker-fr.js
│ │ │ │ │ ├── datepicker-gl.js
│ │ │ │ │ ├── datepicker-he.js
│ │ │ │ │ ├── datepicker-hi.js
│ │ │ │ │ ├── datepicker-hr.js
│ │ │ │ │ ├── datepicker-hu.js
│ │ │ │ │ ├── datepicker-hy.js
│ │ │ │ │ ├── datepicker-id.js
│ │ │ │ │ ├── datepicker-is.js
│ │ │ │ │ ├── datepicker-it-CH.js
│ │ │ │ │ ├── datepicker-it.js
│ │ │ │ │ ├── datepicker-ja.js
│ │ │ │ │ ├── datepicker-ka.js
│ │ │ │ │ ├── datepicker-kk.js
│ │ │ │ │ ├── datepicker-km.js
│ │ │ │ │ ├── datepicker-ko.js
│ │ │ │ │ ├── datepicker-ky.js
│ │ │ │ │ ├── datepicker-lb.js
│ │ │ │ │ ├── datepicker-lt.js
│ │ │ │ │ ├── datepicker-lv.js
│ │ │ │ │ ├── datepicker-mk.js
│ │ │ │ │ ├── datepicker-ml.js
│ │ │ │ │ ├── datepicker-ms.js
│ │ │ │ │ ├── datepicker-nb.js
│ │ │ │ │ ├── datepicker-nl-BE.js
│ │ │ │ │ ├── datepicker-nl.js
│ │ │ │ │ ├── datepicker-nn.js
│ │ │ │ │ ├── datepicker-no.js
│ │ │ │ │ ├── datepicker-pl.js
│ │ │ │ │ ├── datepicker-pt-BR.js
│ │ │ │ │ ├── datepicker-pt.js
│ │ │ │ │ ├── datepicker-rm.js
│ │ │ │ │ ├── datepicker-ro.js
│ │ │ │ │ ├── datepicker-ru.js
│ │ │ │ │ ├── datepicker-sk.js
│ │ │ │ │ ├── datepicker-sl.js
│ │ │ │ │ ├── datepicker-sq.js
│ │ │ │ │ ├── datepicker-sr.js
│ │ │ │ │ ├── datepicker-sr-SR.js
│ │ │ │ │ ├── datepicker-sv.js
│ │ │ │ │ ├── datepicker-ta.js
│ │ │ │ │ ├── datepicker-th.js
│ │ │ │ │ ├── datepicker-tj.js
│ │ │ │ │ ├── datepicker-tr.js
│ │ │ │ │ ├── datepicker-uk.js
│ │ │ │ │ ├── datepicker-vi.js
│ │ │ │ │ ├── datepicker-zh-CN.js
│ │ │ │ │ ├── datepicker-zh-HK.js
│ │ │ │ │ └── datepicker-zh-TW.js
│ │ │ │ ├── ie.js
│ │ │ │ ├── jquery-1-7.js
│ │ │ │ ├── keycode.js
│ │ │ │ ├── labels.js
│ │ │ │ ├── minified
│ │ │ │ │ ├── core.js
│ │ │ │ │ ├── data.js
│ │ │ │ │ ├── disable-selection.js
│ │ │ │ │ ├── effect.js
│ │ │ │ │ ├── escape-selector.js
│ │ │ │ │ ├── focusable.js
│ │ │ │ │ ├── form.js
│ │ │ │ │ ├── form-reset-mixin.js
│ │ │ │ │ ├── i18n
│ │ │ │ │ │ ├── datepicker-af.js
│ │ │ │ │ │ ├── datepicker-ar-DZ.js
│ │ │ │ │ │ ├── datepicker-ar.js
│ │ │ │ │ │ ├── datepicker-az.js
│ │ │ │ │ │ ├── datepicker-be.js
│ │ │ │ │ │ ├── datepicker-bg.js
│ │ │ │ │ │ ├── datepicker-bs.js
│ │ │ │ │ │ ├── datepicker-ca.js
│ │ │ │ │ │ ├── datepicker-cs.js
│ │ │ │ │ │ ├── datepicker-cy-GB.js
│ │ │ │ │ │ ├── datepicker-da.js
│ │ │ │ │ │ ├── datepicker-de.js
│ │ │ │ │ │ ├── datepicker-el.js
│ │ │ │ │ │ ├── datepicker-en-AU.js
│ │ │ │ │ │ ├── datepicker-en-GB.js
│ │ │ │ │ │ ├── datepicker-en-NZ.js
│ │ │ │ │ │ ├── datepicker-eo.js
│ │ │ │ │ │ ├── datepicker-es.js
│ │ │ │ │ │ ├── datepicker-et.js
│ │ │ │ │ │ ├── datepicker-eu.js
│ │ │ │ │ │ ├── datepicker-fa.js
│ │ │ │ │ │ ├── datepicker-fi.js
│ │ │ │ │ │ ├── datepicker-fo.js
│ │ │ │ │ │ ├── datepicker-fr-CA.js
│ │ │ │ │ │ ├── datepicker-fr-CH.js
│ │ │ │ │ │ ├── datepicker-fr.js
│ │ │ │ │ │ ├── datepicker-gl.js
│ │ │ │ │ │ ├── datepicker-he.js
│ │ │ │ │ │ ├── datepicker-hi.js
│ │ │ │ │ │ ├── datepicker-hr.js
│ │ │ │ │ │ ├── datepicker-hu.js
│ │ │ │ │ │ ├── datepicker-hy.js
│ │ │ │ │ │ ├── datepicker-id.js
│ │ │ │ │ │ ├── datepicker-is.js
│ │ │ │ │ │ ├── datepicker-it-CH.js
│ │ │ │ │ │ ├── datepicker-it.js
│ │ │ │ │ │ ├── datepicker-ja.js
│ │ │ │ │ │ ├── datepicker-ka.js
│ │ │ │ │ │ ├── datepicker-kk.js
│ │ │ │ │ │ ├── datepicker-km.js
│ │ │ │ │ │ ├── datepicker-ko.js
│ │ │ │ │ │ ├── datepicker-ky.js
│ │ │ │ │ │ ├── datepicker-lb.js
│ │ │ │ │ │ ├── datepicker-lt.js
│ │ │ │ │ │ ├── datepicker-lv.js
│ │ │ │ │ │ ├── datepicker-mk.js
│ │ │ │ │ │ ├── datepicker-ml.js
│ │ │ │ │ │ ├── datepicker-ms.js
│ │ │ │ │ │ ├── datepicker-nb.js
│ │ │ │ │ │ ├── datepicker-nl-BE.js
│ │ │ │ │ │ ├── datepicker-nl.js
│ │ │ │ │ │ ├── datepicker-nn.js
│ │ │ │ │ │ ├── datepicker-no.js
│ │ │ │ │ │ ├── datepicker-pl.js
│ │ │ │ │ │ ├── datepicker-pt-BR.js
│ │ │ │ │ │ ├── datepicker-pt.js
│ │ │ │ │ │ ├── datepicker-rm.js
│ │ │ │ │ │ ├── datepicker-ro.js
│ │ │ │ │ │ ├── datepicker-ru.js
│ │ │ │ │ │ ├── datepicker-sk.js
│ │ │ │ │ │ ├── datepicker-sl.js
│ │ │ │ │ │ ├── datepicker-sq.js
│ │ │ │ │ │ ├── datepicker-sr.js
│ │ │ │ │ │ ├── datepicker-sr-SR.js
│ │ │ │ │ │ ├── datepicker-sv.js
│ │ │ │ │ │ ├── datepicker-ta.js
│ │ │ │ │ │ ├── datepicker-th.js
│ │ │ │ │ │ ├── datepicker-tj.js
│ │ │ │ │ │ ├── datepicker-tr.js
│ │ │ │ │ │ ├── datepicker-uk.js
│ │ │ │ │ │ ├── datepicker-vi.js
│ │ │ │ │ │ ├── datepicker-zh-CN.js
│ │ │ │ │ │ ├── datepicker-zh-HK.js
│ │ │ │ │ │ └── datepicker-zh-TW.js
│ │ │ │ │ ├── ie.js
│ │ │ │ │ ├── jquery-1-7.js
│ │ │ │ │ ├── keycode.js
│ │ │ │ │ ├── labels.js
│ │ │ │ │ ├── plugin.js
│ │ │ │ │ ├── position.js
│ │ │ │ │ ├── safe-active-element.js
│ │ │ │ │ ├── safe-blur.js
│ │ │ │ │ ├── scroll-parent.js
│ │ │ │ │ ├── tabbable.js
│ │ │ │ │ ├── unique-id.js
│ │ │ │ │ ├── version.js
│ │ │ │ │ └── widget.js
│ │ │ │ ├── plugin.js
│ │ │ │ ├── position.js
│ │ │ │ ├── safe-active-element.js
│ │ │ │ ├── safe-blur.js
│ │ │ │ ├── scroll-parent.js
│ │ │ │ ├── tabbable.js
│ │ │ │ ├── unique-id.js
│ │ │ │ ├── version.js
│ │ │ │ ├── widget.js
│ │ │ │ └── widgets
│ │ │ │ ├── accordion.js
│ │ │ │ ├── autocomplete.js
│ │ │ │ ├── button.js
│ │ │ │ ├── checkboxradio.js
│ │ │ │ ├── controlgroup.js
│ │ │ │ ├── datepicker.js
│ │ │ │ ├── dialog.js
│ │ │ │ ├── draggable.js
│ │ │ │ ├── droppable.js
│ │ │ │ ├── menu.js
│ │ │ │ ├── mouse.js
│ │ │ │ ├── progressbar.js
│ │ │ │ ├── resizable.js
│ │ │ │ ├── selectable.js
│ │ │ │ ├── selectmenu.js
│ │ │ │ ├── slider.js
│ │ │ │ ├── sortable.js
│ │ │ │ ├── spinner.js
│ │ │ │ ├── tabs.js
│ │ │ │ └── tooltip.js
│ │ │ ├── jqueryui-touch-punch
│ │ │ │ └── jquery.ui.touch-punch.min.js
│ │ │ ├── jquery-validation
│ │ │ │ └── dist
│ │ │ │ └── jquery.validate.js
│ │ │ ├── loaders.css
│ │ │ │ └── loaders.css
│ │ │ ├── matchMedia
│ │ │ │ └── matchMedia.js
│ │ │ ├── mjolnic-bootstrap-colorpicker
│ │ │ │ └── dist
│ │ │ │ ├── css
│ │ │ │ │ └── bootstrap-colorpicker.css
│ │ │ │ ├── img
│ │ │ │ │ └── bootstrap-colorpicker
│ │ │ │ │ ├── alpha-horizontal.png
│ │ │ │ │ ├── alpha.png
│ │ │ │ │ ├── hue-horizontal.png
│ │ │ │ │ ├── hue.png
│ │ │ │ │ └── saturation.png
│ │ │ │ └── js
│ │ │ │ └── bootstrap-colorpicker.js
│ │ │ ├── modernizr
│ │ │ │ └── modernizr.custom.js
│ │ │ ├── moment
│ │ │ │ └── min
│ │ │ │ └── moment-with-locales.min.js
│ │ │ ├── morris.js
│ │ │ │ ├── morris.css
│ │ │ │ └── morris.js
│ │ │ ├── nestable
│ │ │ │ └── jquery.nestable.js
│ │ │ ├── parsleyjs
│ │ │ │ └── dist
│ │ │ │ └── parsley.min.js
│ │ │ ├── raphael
│ │ │ │ └── raphael.js
│ │ │ ├── rickshaw
│ │ │ │ ├── rickshaw.js
│ │ │ │ └── rickshaw.min.css
│ │ │ ├── screenfull
│ │ │ │ └── dist
│ │ │ │ └── screenfull.js
│ │ │ ├── seiyria-bootstrap-slider
│ │ │ │ └── dist
│ │ │ │ ├── bootstrap-slider.min.js
│ │ │ │ └── css
│ │ │ │ └── bootstrap-slider.min.css
│ │ │ ├── select2
│ │ │ │ └── dist
│ │ │ │ ├── css
│ │ │ │ │ └── select2.css
│ │ │ │ └── js
│ │ │ │ └── select2.js
│ │ │ ├── select2-bootstrap-theme
│ │ │ │ └── dist
│ │ │ │ └── select2-bootstrap.css
│ │ │ ├── simple-line-icons
│ │ │ │ ├── css
│ │ │ │ │ └── simple-line-icons.css
│ │ │ │ └── fonts
│ │ │ │ ├── Simple-Line-Icons.eot
│ │ │ │ ├── Simple-Line-Icons.svg
│ │ │ │ ├── Simple-Line-Icons.ttf
│ │ │ │ ├── Simple-Line-Icons.woff
│ │ │ │ └── Simple-Line-Icons.woff2
│ │ │ ├── skycons
│ │ │ │ └── skycons.js
│ │ │ ├── slimScroll
│ │ │ │ └── jquery.slimscroll.min.js
│ │ │ ├── sparkline
│ │ │ │ └── index.js
│ │ │ ├── spinkit
│ │ │ │ └── css
│ │ │ │ └── spinkit.css
│ │ │ ├── sweetalert
│ │ │ │ └── dist
│ │ │ │ ├── sweetalert.css
│ │ │ │ └── sweetalert.min.js
│ │ │ ├── weather-icons
│ │ │ │ ├── css
│ │ │ │ │ ├── weather-icons.min.css
│ │ │ │ │ └── weather-icons-wind.min.css
│ │ │ │ └── font
│ │ │ │ ├── weathericons-regular-webfont.eot
│ │ │ │ ├── weathericons-regular-webfont.svg
│ │ │ │ ├── weathericons-regular-webfont.ttf
│ │ │ │ ├── weathericons-regular-webfont.woff
│ │ │ │ └── weathericons-regular-webfont.woff2
│ │ │ ├── whirl
│ │ │ │ └── dist
│ │ │ │ └── whirl.css
│ │ │ └── x-editable
│ │ │ └── dist
│ │ │ └── bootstrap3-editable
│ │ │ ├── css
│ │ │ │ └── bootstrap-editable.css
│ │ │ ├── img
│ │ │ │ ├── clear.png
│ │ │ │ └── loading.gif
│ │ │ └── js
│ │ │ ├── bootstrap-editable.js
│ │ │ └── bootstrap-editable.min.js
│ │ ├── Views
│ │ │ ├── Account
│ │ │ │ ├── ConfirmEmail.cshtml
│ │ │ │ ├── ExternalLoginConfirmation.cshtml
│ │ │ │ ├── ExternalLoginFailure.cshtml
│ │ │ │ ├── _ExternalLoginsListPartial.cshtml
│ │ │ │ ├── ForgotPasswordConfirmation.cshtml
│ │ │ │ ├── ForgotPassword.cshtml
│ │ │ │ ├── Login.cshtml
│ │ │ │ ├── Register.cshtml
│ │ │ │ ├── ResetPasswordConfirmation.cshtml
│ │ │ │ ├── ResetPassword.cshtml
│ │ │ │ ├── SendCode.cshtml
│ │ │ │ └── VerifyCode.cshtml
│ │ │ ├── Blog
│ │ │ │ ├── BlogArticles.cshtml
│ │ │ │ ├── BlogArticleView.cshtml
│ │ │ │ ├── Blog.cshtml
│ │ │ │ └── BlogPost.cshtml
│ │ │ ├── Charts
│ │ │ │ ├── ChartChartist.cshtml
│ │ │ │ ├── ChartFlot.cshtml
│ │ │ │ ├── ChartJS.cshtml
│ │ │ │ ├── ChartMorris.cshtml
│ │ │ │ ├── ChartRadial.cshtml
│ │ │ │ └── ChartRickshaw.cshtml
│ │ │ ├── Dashboard
│ │ │ │ ├── Dashboard_h.cshtml
│ │ │ │ ├── Dashboard_v1.cshtml
│ │ │ │ ├── Dashboard_v2.cshtml
│ │ │ │ └── Dashboard_v3.cshtml
│ │ │ ├── Documentation
│ │ │ │ └── Index.cshtml
│ │ │ ├── Ecommerce
│ │ │ │ ├── EcommerceCheckout.cshtml
│ │ │ │ ├── EcommerceOrders.cshtml
│ │ │ │ ├── EcommerceOrderView.cshtml
│ │ │ │ ├── EcommerceProducts.cshtml
│ │ │ │ └── EcommerceProductView.cshtml
│ │ │ ├── Elements
│ │ │ │ ├── Animations.cshtml
│ │ │ │ ├── Buttons.cshtml
│ │ │ │ ├── Carousel.cshtml
│ │ │ │ ├── Colors.cshtml
│ │ │ │ ├── DropdownAnimations.cshtml
│ │ │ │ ├── Grid.cshtml
│ │ │ │ ├── GridMasonry.cshtml
│ │ │ │ ├── IconsFont.cshtml
│ │ │ │ ├── IconsWeather.cshtml
│ │ │ │ ├── Nestable.cshtml
│ │ │ │ ├── Notifications.cshtml
│ │ │ │ ├── Panels.cshtml
│ │ │ │ ├── Portlets.cshtml
│ │ │ │ ├── Sortable.cshtml
│ │ │ │ ├── Spinners.cshtml
│ │ │ │ ├── SweetAlert.cshtml
│ │ │ │ ├── Tour.cshtml
│ │ │ │ └── Typo.cshtml
│ │ │ ├── Extras
│ │ │ │ ├── BugTracker.cshtml
│ │ │ │ ├── Calendar.cshtml
│ │ │ │ ├── ContactDetails.cshtml
│ │ │ │ ├── Contacts.cshtml
│ │ │ │ ├── Faq.cshtml
│ │ │ │ ├── FileManager.cshtml
│ │ │ │ ├── Followers.cshtml
│ │ │ │ ├── HelpCenter.cshtml
│ │ │ │ ├── Invoice.cshtml
│ │ │ │ ├── Mailbox.cshtml
│ │ │ │ ├── Plans.cshtml
│ │ │ │ ├── ProjectDetails.cshtml
│ │ │ │ ├── Projects.cshtml
│ │ │ │ ├── Search.cshtml
│ │ │ │ ├── Settings.cshtml
│ │ │ │ ├── SocialBoard.cshtml
│ │ │ │ ├── TeamViewer.cshtml
│ │ │ │ ├── Timeline.cshtml
│ │ │ │ ├── Todo.cshtml
│ │ │ │ ├── UserProfile.cshtml
│ │ │ │ └── VoteLinks.cshtml
│ │ │ ├── Forms
│ │ │ │ ├── FormExtended.cshtml
│ │ │ │ ├── FormImgCrop.cshtml
│ │ │ │ ├── FormStandard.cshtml
│ │ │ │ ├── FormUpload.cshtml
│ │ │ │ ├── FormValidation.cshtml
│ │ │ │ ├── FormWizard.cshtml
│ │ │ │ └── FormXEditable.cshtml
│ │ │ ├── Forum
│ │ │ │ ├── ForumCategories.cshtml
│ │ │ │ ├── ForumDiscussion.cshtml
│ │ │ │ └── ForumTopics.cshtml
│ │ │ ├── Home
│ │ │ │ ├── About.cshtml
│ │ │ │ ├── Contact.cshtml
│ │ │ │ └── Index.cshtml
│ │ │ ├── Manage
│ │ │ │ ├── AddPhoneNumber.cshtml
│ │ │ │ ├── ChangePassword.cshtml
│ │ │ │ ├── Index.cshtml
│ │ │ │ ├── ManageLogins.cshtml
│ │ │ │ ├── SetPassword.cshtml
│ │ │ │ └── VerifyPhoneNumber.cshtml
│ │ │ ├── Maps
│ │ │ │ ├── MapsGoogle.cshtml
│ │ │ │ └── MapsVector.cshtml
│ │ │ ├── Movies
│ │ │ │ ├── Create.cshtml
│ │ │ │ ├── Delete.cshtml
│ │ │ │ ├── Details.cshtml
│ │ │ │ ├── Edit.cshtml
│ │ │ │ └── Index.cshtml
│ │ │ ├── Multilevels
│ │ │ │ ├── Multilevel_1.cshtml
│ │ │ │ └── Multilevel_3.cshtml
│ │ │ ├── Pages
│ │ │ │ ├── Error_404.cshtml
│ │ │ │ ├── Error_500.cshtml
│ │ │ │ ├── Lock.cshtml
│ │ │ │ ├── Login.cshtml
│ │ │ │ ├── Maintenance.cshtml
│ │ │ │ ├── Recover.cshtml
│ │ │ │ ├── Register.cshtml
│ │ │ │ └── Template.cshtml
│ │ │ ├── Shared
│ │ │ │ ├── Error.cshtml
│ │ │ │ ├── _Footer.cshtml
│ │ │ │ ├── _Layout.cshtml
│ │ │ │ ├── _LayoutHorizontal.cshtml
│ │ │ │ ├── _LayoutPage.cshtml
│ │ │ │ ├── Lockout.cshtml
│ │ │ │ ├── _LoginPartial.cshtml
│ │ │ │ ├── _Offsidebar.cshtml
│ │ │ │ ├── _Sidebar.cshtml
│ │ │ │ ├── _TopNavbar.cshtml
│ │ │ │ └── _TopNavbarHorizontal.cshtml
│ │ │ ├── Tables
│ │ │ │ ├── TableDatatable.cshtml
│ │ │ │ ├── TableExtended.cshtml
│ │ │ │ ├── TableJQGrid.cshtml
│ │ │ │ └── TableStandard.cshtml
│ │ │ ├── _ViewStart.cshtml
│ │ │ ├── Web.config
│ │ │ └── Widgets
│ │ │ └── Index.cshtml
│ │ ├── Web.config
│ │ ├── Web.Debug.config
│ │ └── Web.Release.config
│ └── Angle.sln
├── netcore-angular
│ └── Angle
│ ├── Angle
│ │ ├── Angle.csproj
│ │ ├── Angle.csproj.user
│ │ ├── appsettings.Development.json
│ │ ├── appsettings.json
│ │ ├── bower.json
│ │ ├── bundleconfig.json
│ │ ├── Controllers
│ │ │ ├── AppController.cs
│ │ │ ├── BlogController.cs
│ │ │ ├── ChartsController.cs
│ │ │ ├── DashboardController.cs
│ │ │ ├── DocumentationController.cs
│ │ │ ├── EcommerceController.cs
│ │ │ ├── ElementsController.cs
│ │ │ ├── ExtrasController.cs
│ │ │ ├── FormsController.cs
│ │ │ ├── ForumController.cs
│ │ │ ├── HomeController.cs
│ │ │ ├── MapsController.cs
│ │ │ ├── PagesController.cs
│ │ │ ├── PartialsController.cs
│ │ │ ├── SingleViewController.cs
│ │ │ ├── TablesController.cs
│ │ │ └── WidgetsController.cs
│ │ ├── gulpfile.js
│ │ ├── package.json
│ │ ├── package-lock.json
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── launchSettings.json
│ │ ├── Startup.cs
│ │ ├── Views
│ │ │ ├── App
│ │ │ │ ├── Index.cshtml
│ │ │ │ └── Index-Horizontal.cshtml
│ │ │ ├── Blog
│ │ │ │ ├── BlogArticles.cshtml
│ │ │ │ ├── BlogArticleView.cshtml
│ │ │ │ ├── Blog.cshtml
│ │ │ │ └── BlogPost.cshtml
│ │ │ ├── Charts
│ │ │ │ ├── ChartChartist.cshtml
│ │ │ │ ├── ChartFlot.cshtml
│ │ │ │ ├── ChartJs.cshtml
│ │ │ │ ├── ChartMorris.cshtml
│ │ │ │ ├── ChartRadial.cshtml
│ │ │ │ └── ChartRickshaw.cshtml
│ │ │ ├── Dashboard
│ │ │ │ ├── DashboardV1.cshtml
│ │ │ │ ├── DashboardV2.cshtml
│ │ │ │ └── DashboardV3.cshtml
│ │ │ ├── Documentation
│ │ │ │ └── Documentation.cshtml
│ │ │ ├── Ecommerce
│ │ │ │ ├── EcommerceCheckout.cshtml
│ │ │ │ ├── EcommerceOrders.cshtml
│ │ │ │ ├── EcommerceOrderView.cshtml
│ │ │ │ ├── EcommerceProducts.cshtml
│ │ │ │ └── EcommerceProductView.cshtml
│ │ │ ├── Elements
│ │ │ │ ├── Buttons.cshtml
│ │ │ │ ├── Carousel.cshtml
│ │ │ │ ├── Colors.cshtml
│ │ │ │ ├── DropdownAnimations.cshtml
│ │ │ │ ├── Grid.cshtml
│ │ │ │ ├── GridMasonry.cshtml
│ │ │ │ ├── GridMasonryDeckCard.cshtml
│ │ │ │ ├── GridMasonryDeck.cshtml
│ │ │ │ ├── IconsFont.cshtml
│ │ │ │ ├── IconsWeather.cshtml
│ │ │ │ ├── InfiniteScroll.cshtml
│ │ │ │ ├── Interaction.cshtml
│ │ │ │ ├── Localization.cshtml
│ │ │ │ ├── NavTree.cshtml
│ │ │ │ ├── Nestable.cshtml
│ │ │ │ ├── Ngdialog.cshtml
│ │ │ │ ├── NgdialogTemplate.cshtml
│ │ │ │ ├── Notifications.cshtml
│ │ │ │ ├── Panels.cshtml
│ │ │ │ ├── Portlets.cshtml
│ │ │ │ ├── Sortable.cshtml
│ │ │ │ ├── Spinners.cshtml
│ │ │ │ ├── Sweetalert.cshtml
│ │ │ │ ├── Template.cshtml
│ │ │ │ ├── Tour.cshtml
│ │ │ │ └── Typo.cshtml
│ │ │ ├── Extras
│ │ │ │ ├── BugTracker.cshtml
│ │ │ │ ├── Calendar.cshtml
│ │ │ │ ├── CodeEditor.cshtml
│ │ │ │ ├── ContactDetails.cshtml
│ │ │ │ ├── Contacts.cshtml
│ │ │ │ ├── Faq.cshtml
│ │ │ │ ├── FileManager.cshtml
│ │ │ │ ├── Followers.cshtml
│ │ │ │ ├── HelpCenter.cshtml
│ │ │ │ ├── Invoice.cshtml
│ │ │ │ ├── MailboxCompose.cshtml
│ │ │ │ ├── Mailbox.cshtml
│ │ │ │ ├── MailboxInbox.cshtml
│ │ │ │ ├── MailboxView.cshtml
│ │ │ │ ├── Plans.cshtml
│ │ │ │ ├── Profile.cshtml
│ │ │ │ ├── ProjectDetails.cshtml
│ │ │ │ ├── Projects.cshtml
│ │ │ │ ├── Search.cshtml
│ │ │ │ ├── Settings.cshtml
│ │ │ │ ├── SocialBoard.cshtml
│ │ │ │ ├── TeamViewer.cshtml
│ │ │ │ ├── Timeline.cshtml
│ │ │ │ ├── Todo.cshtml
│ │ │ │ └── VoteLinks.cshtml
│ │ │ ├── Forms
│ │ │ │ ├── FormExtended.cshtml
│ │ │ │ ├── FormImagecrop.cshtml
│ │ │ │ ├── FormStandard.cshtml
│ │ │ │ ├── FormUiselect.cshtml
│ │ │ │ ├── FormUpload.cshtml
│ │ │ │ ├── FormValidation.cshtml
│ │ │ │ ├── FormWizard.cshtml
│ │ │ │ └── FormXeditable.cshtml
│ │ │ ├── Forum
│ │ │ │ ├── Forum.cshtml
│ │ │ │ ├── ForumDiscussion.cshtml
│ │ │ │ └── ForumTopics.cshtml
│ │ │ ├── Home
│ │ │ │ ├── About.cshtml
│ │ │ │ ├── Contact.cshtml
│ │ │ │ └── Index.cshtml
│ │ │ ├── Maps
│ │ │ │ ├── MapsGoogle.cshtml
│ │ │ │ └── MapsVector.cshtml
│ │ │ ├── Pages
│ │ │ │ ├── Error404.cshtml
│ │ │ │ ├── Error500.cshtml
│ │ │ │ ├── Lock.cshtml
│ │ │ │ ├── Login.cshtml
│ │ │ │ ├── Maintenance.cshtml
│ │ │ │ ├── Page.cshtml
│ │ │ │ ├── Recover.cshtml
│ │ │ │ └── Register.cshtml
│ │ │ ├── Partials
│ │ │ │ ├── Chat.cshtml
│ │ │ │ ├── Footer.cshtml
│ │ │ │ ├── Offsidebar.cshtml
│ │ │ │ ├── Settings.cshtml
│ │ │ │ ├── Sidebar.cshtml
│ │ │ │ ├── TopNavbar.cshtml
│ │ │ │ └── TopNavbarH.cshtml
│ │ │ ├── Shared
│ │ │ │ ├── Error.cshtml
│ │ │ │ └── _Layout.cshtml
│ │ │ ├── SingleView
│ │ │ │ ├── Index.cshtml
│ │ │ │ └── MenuView.cshtml
│ │ │ ├── Tables
│ │ │ │ ├── TableAngulargrid.cshtml
│ │ │ │ ├── TableDatatable.cshtml
│ │ │ │ ├── TableExtended.cshtml
│ │ │ │ ├── TableNgtable.cshtml
│ │ │ │ ├── TableStandard.cshtml
│ │ │ │ ├── TableUigrid.cshtml
│ │ │ │ └── TableXeditable.cshtml
│ │ │ ├── _ViewImports.cshtml
│ │ │ ├── _ViewStart.cshtml
│ │ │ └── Widgets
│ │ │ └── Widgets.cshtml
│ │ └── wwwroot
│ │ ├── css
│ │ │ ├── app.css
│ │ │ ├── bootstrap.css
│ │ │ ├── theme-a.css
│ │ │ ├── theme-b.css
│ │ │ ├── theme-c.css
│ │ │ ├── theme-d.css
│ │ │ ├── theme-e.css
│ │ │ ├── theme-f.css
│ │ │ ├── theme-g.css
│ │ │ └── theme-h.css
│ │ ├── documentation
│ │ │ └── readme.md
│ │ ├── favicon.ico
│ │ ├── i18n
│ │ │ ├── en.json
│ │ │ └── es_AR.json
│ │ ├── images
│ │ │ ├── ASP-NET-Banners-01.png
│ │ │ ├── ASP-NET-Banners-02.png
│ │ │ ├── Banner-01-Azure.png
│ │ │ ├── Banner-02-VS.png
│ │ │ ├── banner1.svg
│ │ │ ├── banner2.svg
│ │ │ ├── banner3.svg
│ │ │ ├── banner4.svg
│ │ │ ├── bg10.jpg
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.jpg
│ │ │ ├── bg3.jpg
│ │ │ ├── bg4.jpg
│ │ │ ├── bg5.jpg
│ │ │ ├── bg6.jpg
│ │ │ ├── bg7.jpg
│ │ │ ├── bg8.jpg
│ │ │ ├── bg9.jpg
│ │ │ ├── dummy.png
│ │ │ ├── lock-bg.jpg
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ ├── mb-sample.jpg
│ │ │ ├── mockup.png
│ │ │ ├── preloader
│ │ │ │ ├── preloader.empty.png
│ │ │ │ └── preloader.full.png
│ │ │ ├── profile-bg.jpg
│ │ │ └── user
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 04.jpg
│ │ │ ├── 05.jpg
│ │ │ ├── 06.jpg
│ │ │ ├── 07.jpg
│ │ │ ├── 08.jpg
│ │ │ ├── 09.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ └── 13.jpg
│ │ ├── js
│ │ │ └── app.js
│ │ ├── master
│ │ │ ├── js
│ │ │ │ ├── app.module.js
│ │ │ │ ├── custom
│ │ │ │ │ ├── custom.controller.js
│ │ │ │ │ ├── custom.module.js
│ │ │ │ │ └── README.txt
│ │ │ │ └── modules
│ │ │ │ ├── bootstrapui
│ │ │ │ │ ├── alerts.controller.js
│ │ │ │ │ ├── bootstrapui.config.js
│ │ │ │ │ ├── bootstrapui.module.js
│ │ │ │ │ ├── buttons.controller.js
│ │ │ │ │ ├── carousel.controller.js
│ │ │ │ │ ├── datepicker.controller.js
│ │ │ │ │ ├── modals.controller.js
│ │ │ │ │ ├── pagination.controller.js
│ │ │ │ │ ├── popover.controller.js
│ │ │ │ │ ├── progress.controller.js
│ │ │ │ │ ├── rating.controller.js
│ │ │ │ │ ├── timepicker.controller.js
│ │ │ │ │ ├── tooltip.controller.js
│ │ │ │ │ └── typeahead.controller.js
│ │ │ │ ├── charts
│ │ │ │ │ ├── chartist.controller.js
│ │ │ │ │ ├── chartjs.controller.js
│ │ │ │ │ ├── charts.module.js
│ │ │ │ │ ├── flot.controller.js
│ │ │ │ │ ├── flot-data.service.js
│ │ │ │ │ ├── flot.directive.js
│ │ │ │ │ ├── morris.controller.js
│ │ │ │ │ ├── morris.directive.js
│ │ │ │ │ ├── piecharts.controller.js
│ │ │ │ │ ├── rickshaw.controller.js
│ │ │ │ │ └── sparklines.directive.js
│ │ │ │ ├── colors
│ │ │ │ │ ├── colors.contant.js
│ │ │ │ │ ├── colors.module.js
│ │ │ │ │ └── colors.service.js
│ │ │ │ ├── core
│ │ │ │ │ ├── core.config.js
│ │ │ │ │ ├── core.constants.js
│ │ │ │ │ ├── core.module.js
│ │ │ │ │ └── core.run.js
│ │ │ │ ├── dashboard
│ │ │ │ │ ├── dashboard.controller.js
│ │ │ │ │ ├── dashboard.module.js
│ │ │ │ │ ├── dashboard.v2.controller.js
│ │ │ │ │ └── dashboard.v3.controller.js
│ │ │ │ ├── elements
│ │ │ │ │ ├── carousel.controller.js
│ │ │ │ │ ├── dialog.controller.js
│ │ │ │ │ ├── elements.module.js
│ │ │ │ │ ├── infinite-scroll.controller.js
│ │ │ │ │ ├── masonry-deck.controller.js
│ │ │ │ │ ├── navtree.controller.js
│ │ │ │ │ ├── nestable.controller.js
│ │ │ │ │ ├── scroll.directive.js
│ │ │ │ │ ├── sortable.controller.js
│ │ │ │ │ ├── sweetalert.controller.js
│ │ │ │ │ ├── toaster.controller.js
│ │ │ │ │ └── tour.controller.js
│ │ │ │ ├── extras
│ │ │ │ │ ├── article.controller.js
│ │ │ │ │ ├── calendar.controller.js
│ │ │ │ │ ├── code-editor.controller.js
│ │ │ │ │ ├── code-editor-loadtree.service.js
│ │ │ │ │ ├── extras.module.js
│ │ │ │ │ ├── todo.controller.js
│ │ │ │ │ └── word-cloud.controller.js
│ │ │ │ ├── flatdoc
│ │ │ │ │ ├── flatdoc.directive.js
│ │ │ │ │ └── flatdoc.module.js
│ │ │ │ ├── forms
│ │ │ │ │ ├── color-picker.controller.js
│ │ │ │ │ ├── filestyle.directive.js
│ │ │ │ │ ├── form-imgcrop.controller.js
│ │ │ │ │ ├── forms.controller.js
│ │ │ │ │ ├── forms.module.js
│ │ │ │ │ ├── form-validation.controller.js
│ │ │ │ │ ├── form-wizard.directive.js
│ │ │ │ │ ├── form-xeditable.controller.js
│ │ │ │ │ ├── masked.directive.js
│ │ │ │ │ ├── props.filter.js
│ │ │ │ │ ├── tags-input.directive.js
│ │ │ │ │ ├── uiselect.controller.js
│ │ │ │ │ └── upload.controller.js
│ │ │ │ ├── icons
│ │ │ │ │ ├── icons.module.js
│ │ │ │ │ └── icons-skycons.directive.js
│ │ │ │ ├── lazyload
│ │ │ │ │ ├── lazyload.config.js
│ │ │ │ │ ├── lazyload.constants.js
│ │ │ │ │ └── lazyload.module.js
│ │ │ │ ├── loadingbar
│ │ │ │ │ ├── loadingbar.config.js
│ │ │ │ │ ├── loadingbar.module.js
│ │ │ │ │ └── loadingbar.run.js
│ │ │ │ ├── locale
│ │ │ │ │ ├── locale.config.js
│ │ │ │ │ ├── locale.controller.js
│ │ │ │ │ └── locale.module.js
│ │ │ │ ├── mailbox
│ │ │ │ │ ├── mailbox.controller.js
│ │ │ │ │ ├── mailbox.module.js
│ │ │ │ │ ├── mailfolder.controller.js
│ │ │ │ │ ├── mails.service.js
│ │ │ │ │ └── mailview.controller.js
│ │ │ │ ├── maps
│ │ │ │ │ ├── maps-google.controller.js
│ │ │ │ │ ├── maps-google-modal.controller.js
│ │ │ │ │ ├── maps.module.js
│ │ │ │ │ ├── vector-map.directive.js
│ │ │ │ │ ├── vector-maps.controller.js
│ │ │ │ │ └── vector-map.service.js
│ │ │ │ ├── navsearch
│ │ │ │ │ ├── navsearch.directive.js
│ │ │ │ │ ├── navsearch.module.js
│ │ │ │ │ └── navsearch.service.js
│ │ │ │ ├── notify
│ │ │ │ │ ├── notify.controller.js
│ │ │ │ │ ├── notify.directive.js
│ │ │ │ │ ├── notify.module.js
│ │ │ │ │ └── notify.service.js
│ │ │ │ ├── pages
│ │ │ │ │ ├── access-login.controller.js
│ │ │ │ │ ├── access-register.controller.js
│ │ │ │ │ └── pages.module.js
│ │ │ │ ├── panels
│ │ │ │ │ ├── panel-collapse.directive.js
│ │ │ │ │ ├── panel-dismiss.directive.js
│ │ │ │ │ ├── panel-refresh.directive.js
│ │ │ │ │ ├── panels.controller.js
│ │ │ │ │ ├── panels.module.js
│ │ │ │ │ ├── panel-tools.directive.js
│ │ │ │ │ └── portlet.controller.js
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.directive.js
│ │ │ │ │ └── preloader.module.js
│ │ │ │ ├── routes
│ │ │ │ │ ├── route-helpers.provider.js
│ │ │ │ │ ├── routes.config.js
│ │ │ │ │ └── routes.module.js
│ │ │ │ ├── settings
│ │ │ │ │ ├── settings.module.js
│ │ │ │ │ └── settings.run.js
│ │ │ │ ├── sidebar
│ │ │ │ │ ├── sidebar.controller.js
│ │ │ │ │ ├── sidebar.directive.js
│ │ │ │ │ ├── sidebar.module.js
│ │ │ │ │ ├── sidebar.service.js
│ │ │ │ │ └── sidebar.userblock.controller.js
│ │ │ │ ├── tables
│ │ │ │ │ ├── angular-grid.controller.js
│ │ │ │ │ ├── datatable.controller.js
│ │ │ │ │ ├── ngtable.controller.js
│ │ │ │ │ ├── ngtable-data.service.js
│ │ │ │ │ ├── tables.module.js
│ │ │ │ │ ├── table-xeditable.controller.js
│ │ │ │ │ └── uigrid.controller.js
│ │ │ │ ├── translate
│ │ │ │ │ ├── translate.config.js
│ │ │ │ │ ├── translate.module.js
│ │ │ │ │ └── translate.run.js
│ │ │ │ └── utils
│ │ │ │ ├── animate-enabled.directive.js
│ │ │ │ ├── browser.service.js
│ │ │ │ ├── clear-storage.directive.js
│ │ │ │ ├── fullscreen.directive.js
│ │ │ │ ├── load-css.directive.js
│ │ │ │ ├── now.directive.js
│ │ │ │ ├── table-checkall.directive.js
│ │ │ │ ├── trigger-resize.directive.js
│ │ │ │ ├── utils.module.js
│ │ │ │ └── utils.service.js
│ │ │ └── sass
│ │ │ ├── app
│ │ │ │ ├── alerts.scss
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── breadcrumbs.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── calendar.scss
│ │ │ │ ├── carousel.scss
│ │ │ │ ├── chart-easypie.scss
│ │ │ │ ├── chart-flot.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── code-editor.scss
│ │ │ │ ├── datatable.scss
│ │ │ │ ├── datepicker.scss
│ │ │ │ ├── docs.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── form-elements.scss
│ │ │ │ ├── form-imgcrop.scss
│ │ │ │ ├── form-tags.scss
│ │ │ │ ├── form-validation.scss
│ │ │ │ ├── form-wizard.scss
│ │ │ │ ├── gmap.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── loading-bar.scss
│ │ │ │ ├── mailbox.scss
│ │ │ │ ├── masonry-grid-deck.scss
│ │ │ │ ├── masonry-grid.scss
│ │ │ │ ├── media-queries.scss
│ │ │ │ ├── nestable.scss
│ │ │ │ ├── ngdialog.scss
│ │ │ │ ├── ngwig.scss
│ │ │ │ ├── notify.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── panels.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── plans.scss
│ │ │ │ ├── plugins.scss
│ │ │ │ ├── portlets.scss
│ │ │ │ ├── preloader.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── progress-extra.scss
│ │ │ │ ├── radial-bar.scss
│ │ │ │ ├── row-extra.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── spinner.scss
│ │ │ │ ├── table-angulargrid.scss
│ │ │ │ ├── table-extras.scss
│ │ │ │ ├── table-grid.scss
│ │ │ │ ├── table-ngtable.scss
│ │ │ │ ├── table-uigrid.scss
│ │ │ │ ├── timeline.scss
│ │ │ │ ├── todo.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typeahead.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── uiselect.scss
│ │ │ │ ├── user-block.scss
│ │ │ │ ├── utils-definitions.scss
│ │ │ │ ├── utils.scss
│ │ │ │ ├── variables.scss
│ │ │ │ ├── vector-map.scss
│ │ │ │ └── widget.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _badges.scss
│ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ ├── _close.scss
│ │ │ │ │ ├── _code.scss
│ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _media.scss
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modals.scss
│ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ ├── _navs.scss
│ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ ├── _pager.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ ├── _print.scss
│ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _tables.scss
│ │ │ │ │ ├── _theme.scss
│ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ ├── _variables.scss
│ │ │ │ │ └── _wells.scss
│ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ ├── _bootstrap.scss
│ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ └── server
│ │ ├── ag-owinners.json
│ │ ├── chart
│ │ │ ├── area.json
│ │ │ ├── bar.json
│ │ │ ├── barstacked.json
│ │ │ ├── barstackedv2.json
│ │ │ ├── donut.json
│ │ │ ├── line.json
│ │ │ ├── pie.json
│ │ │ ├── realtime.json
│ │ │ ├── spline.json
│ │ │ ├── splinev2.json
│ │ │ └── splinev3.json
│ │ ├── chosen-states.json
│ │ ├── cities.json
│ │ ├── datatable.json
│ │ ├── editor
│ │ │ ├── filetree.json
│ │ │ └── source
│ │ │ ├── another.html
│ │ │ ├── css
│ │ │ │ └── style.css
│ │ │ ├── index.html
│ │ │ └── js
│ │ │ └── script.js
│ │ ├── mails.json
│ │ ├── ng-grid-data.json
│ │ ├── readme.md
│ │ ├── sidebar-menu.json
│ │ ├── table-data.json
│ │ ├── treedata.json
│ │ ├── uigrid-100.json
│ │ ├── uigrid-complex.json
│ │ ├── upload.php
│ │ └── xeditable-groups.json
│ └── Angle.sln
├── netcore-angular5
│ └── Angle
│ ├── Angle
│ │ ├── Angle.csproj
│ │ ├── appsettings.Development.json
│ │ ├── appsettings.json
│ │ ├── ClientApp
│ │ │ ├── app
│ │ │ │ ├── app.component.html
│ │ │ │ ├── app.component.scss
│ │ │ │ ├── app.component.ts
│ │ │ │ ├── app.module.ts
│ │ │ │ ├── core
│ │ │ │ │ ├── core.module.ts
│ │ │ │ │ ├── menu
│ │ │ │ │ │ └── menu.service.ts
│ │ │ │ │ ├── module-import-guard.ts
│ │ │ │ │ ├── settings
│ │ │ │ │ │ └── settings.service.ts
│ │ │ │ │ ├── themes
│ │ │ │ │ │ └── themes.service.ts
│ │ │ │ │ └── translator
│ │ │ │ │ └── translator.service.ts
│ │ │ │ ├── layout
│ │ │ │ │ ├── footer
│ │ │ │ │ │ ├── footer.component.html
│ │ │ │ │ │ ├── footer.component.scss
│ │ │ │ │ │ └── footer.component.ts
│ │ │ │ │ ├── header
│ │ │ │ │ │ ├── header.component.h.html
│ │ │ │ │ │ ├── header.component.html
│ │ │ │ │ │ ├── header.component.scss
│ │ │ │ │ │ ├── header.component.ts
│ │ │ │ │ │ └── navsearch
│ │ │ │ │ │ ├── navsearch.component.html
│ │ │ │ │ │ ├── navsearch.component.scss
│ │ │ │ │ │ └── navsearch.component.ts
│ │ │ │ │ ├── layout.component.h.html
│ │ │ │ │ ├── layout.component.html
│ │ │ │ │ ├── layout.component.scss
│ │ │ │ │ ├── layout.component.ts
│ │ │ │ │ ├── layout.module.ts
│ │ │ │ │ ├── offsidebar
│ │ │ │ │ │ ├── offsidebar.component.html
│ │ │ │ │ │ ├── offsidebar.component.scss
│ │ │ │ │ │ └── offsidebar.component.ts
│ │ │ │ │ └── sidebar
│ │ │ │ │ ├── sidebar.component.html
│ │ │ │ │ ├── sidebar.component.scss
│ │ │ │ │ ├── sidebar.component.ts
│ │ │ │ │ └── userblock
│ │ │ │ │ ├── userblock.component.html
│ │ │ │ │ ├── userblock.component.scss
│ │ │ │ │ ├── userblock.component.ts
│ │ │ │ │ └── userblock.service.ts
│ │ │ │ ├── polyfills.ts
│ │ │ │ ├── routes
│ │ │ │ │ ├── blog
│ │ │ │ │ │ ├── articles
│ │ │ │ │ │ │ ├── articles.component.html
│ │ │ │ │ │ │ ├── articles.component.scss
│ │ │ │ │ │ │ └── articles.component.ts
│ │ │ │ │ │ ├── articleview
│ │ │ │ │ │ │ ├── articleview.component.html
│ │ │ │ │ │ │ ├── articleview.component.scss
│ │ │ │ │ │ │ └── articleview.component.ts
│ │ │ │ │ │ ├── blog.module.ts
│ │ │ │ │ │ ├── list
│ │ │ │ │ │ │ ├── list.component.html
│ │ │ │ │ │ │ ├── list.component.scss
│ │ │ │ │ │ │ └── list.component.ts
│ │ │ │ │ │ └── post
│ │ │ │ │ │ ├── post.component.html
│ │ │ │ │ │ ├── post.component.scss
│ │ │ │ │ │ └── post.component.ts
│ │ │ │ │ ├── charts
│ │ │ │ │ │ ├── chartjs
│ │ │ │ │ │ │ ├── chartjs.component.html
│ │ │ │ │ │ │ ├── chartjs.component.scss
│ │ │ │ │ │ │ └── chartjs.component.ts
│ │ │ │ │ │ ├── charts.module.ts
│ │ │ │ │ │ ├── flot
│ │ │ │ │ │ │ ├── flot.component.html
│ │ │ │ │ │ │ ├── flot.component.scss
│ │ │ │ │ │ │ └── flot.component.ts
│ │ │ │ │ │ └── radial
│ │ │ │ │ │ ├── radial.component.html
│ │ │ │ │ │ ├── radial.component.scss
│ │ │ │ │ │ └── radial.component.ts
│ │ │ │ │ ├── dashboard
│ │ │ │ │ │ ├── dashboard.module.ts
│ │ │ │ │ │ ├── dashboardv1
│ │ │ │ │ │ │ ├── dashboardv1.component.html
│ │ │ │ │ │ │ ├── dashboardv1.component.scss
│ │ │ │ │ │ │ └── dashboardv1.component.ts
│ │ │ │ │ │ ├── dashboardv2
│ │ │ │ │ │ │ ├── dashboardv2.component.html
│ │ │ │ │ │ │ ├── dashboardv2.component.scss
│ │ │ │ │ │ │ └── dashboardv2.component.ts
│ │ │ │ │ │ └── dashboardv3
│ │ │ │ │ │ ├── dashboardv3.component.html
│ │ │ │ │ │ ├── dashboardv3.component.scss
│ │ │ │ │ │ └── dashboardv3.component.ts
│ │ │ │ │ ├── ecommerce
│ │ │ │ │ │ ├── checkout
│ │ │ │ │ │ │ ├── checkout.component.html
│ │ │ │ │ │ │ ├── checkout.component.scss
│ │ │ │ │ │ │ └── checkout.component.ts
│ │ │ │ │ │ ├── ecommerce.module.ts
│ │ │ │ │ │ ├── orders
│ │ │ │ │ │ │ ├── orders.component.html
│ │ │ │ │ │ │ ├── orders.component.scss
│ │ │ │ │ │ │ └── orders.component.ts
│ │ │ │ │ │ ├── orderview
│ │ │ │ │ │ │ ├── orderview.component.html
│ │ │ │ │ │ │ ├── orderview.component.scss
│ │ │ │ │ │ │ └── orderview.component.ts
│ │ │ │ │ │ ├── products
│ │ │ │ │ │ │ ├── products.component.html
│ │ │ │ │ │ │ ├── products.component.scss
│ │ │ │ │ │ │ └── products.component.ts
│ │ │ │ │ │ └── productview
│ │ │ │ │ │ ├── productview.component.html
│ │ │ │ │ │ ├── productview.component.scss
│ │ │ │ │ │ └── productview.component.ts
│ │ │ │ │ ├── elements
│ │ │ │ │ │ ├── buttons
│ │ │ │ │ │ │ ├── buttons.component.html
│ │ │ │ │ │ │ ├── buttons.component.scss
│ │ │ │ │ │ │ └── buttons.component.ts
│ │ │ │ │ │ ├── colors
│ │ │ │ │ │ │ ├── colors.component.html
│ │ │ │ │ │ │ ├── colors.component.scss
│ │ │ │ │ │ │ └── colors.component.ts
│ │ │ │ │ │ ├── dropdown
│ │ │ │ │ │ │ ├── dropdown.component.html
│ │ │ │ │ │ │ ├── dropdown.component.scss
│ │ │ │ │ │ │ └── dropdown.component.ts
│ │ │ │ │ │ ├── elements.module.ts
│ │ │ │ │ │ ├── grid
│ │ │ │ │ │ │ ├── grid.component.html
│ │ │ │ │ │ │ ├── grid.component.scss
│ │ │ │ │ │ │ └── grid.component.ts
│ │ │ │ │ │ ├── gridmasonry
│ │ │ │ │ │ │ ├── gridmasonry.component.html
│ │ │ │ │ │ │ ├── gridmasonry.component.scss
│ │ │ │ │ │ │ └── gridmasonry.component.ts
│ │ │ │ │ │ ├── iconsfont
│ │ │ │ │ │ │ ├── iconsfont.component.html
│ │ │ │ │ │ │ ├── iconsfont.component.scss
│ │ │ │ │ │ │ └── iconsfont.component.ts
│ │ │ │ │ │ ├── iconsweather
│ │ │ │ │ │ │ ├── iconsweather.component.html
│ │ │ │ │ │ │ ├── iconsweather.component.scss
│ │ │ │ │ │ │ └── iconsweather.component.ts
│ │ │ │ │ │ ├── infinitescroll
│ │ │ │ │ │ │ ├── infinitescroll.component.html
│ │ │ │ │ │ │ ├── infinitescroll.component.scss
│ │ │ │ │ │ │ └── infinitescroll.component.ts
│ │ │ │ │ │ ├── interaction
│ │ │ │ │ │ │ ├── interaction.component.html
│ │ │ │ │ │ │ ├── interaction.component.scss
│ │ │ │ │ │ │ └── interaction.component.ts
│ │ │ │ │ │ ├── navtree
│ │ │ │ │ │ │ ├── navtree.component.html
│ │ │ │ │ │ │ ├── navtree.component.scss
│ │ │ │ │ │ │ └── navtree.component.ts
│ │ │ │ │ │ ├── notification
│ │ │ │ │ │ │ ├── notification.component.html
│ │ │ │ │ │ │ ├── notification.component.scss
│ │ │ │ │ │ │ └── notification.component.ts
│ │ │ │ │ │ ├── sortable
│ │ │ │ │ │ │ ├── sortable.component.html
│ │ │ │ │ │ │ ├── sortable.component.scss
│ │ │ │ │ │ │ ├── sortable.component.ts
│ │ │ │ │ │ │ └── sortable.product.ts
│ │ │ │ │ │ ├── spinners
│ │ │ │ │ │ │ ├── spinners.component.html
│ │ │ │ │ │ │ ├── spinners.component.scss
│ │ │ │ │ │ │ └── spinners.component.ts
│ │ │ │ │ │ ├── sweetalert
│ │ │ │ │ │ │ ├── sweetalert.component.html
│ │ │ │ │ │ │ ├── sweetalert.component.scss
│ │ │ │ │ │ │ └── sweetalert.component.ts
│ │ │ │ │ │ └── typography
│ │ │ │ │ │ ├── typography.component.html
│ │ │ │ │ │ ├── typography.component.scss
│ │ │ │ │ │ └── typography.component.ts
│ │ │ │ │ ├── extras
│ │ │ │ │ │ ├── bugtracker
│ │ │ │ │ │ │ ├── bugtracker.component.html
│ │ │ │ │ │ │ ├── bugtracker.component.scss
│ │ │ │ │ │ │ └── bugtracker.component.ts
│ │ │ │ │ │ ├── calendar
│ │ │ │ │ │ │ ├── calendar.component.html
│ │ │ │ │ │ │ ├── calendar.component.scss
│ │ │ │ │ │ │ └── calendar.component.ts
│ │ │ │ │ │ ├── codeeditor
│ │ │ │ │ │ │ ├── codeeditor.component.html
│ │ │ │ │ │ │ ├── codeeditor.component.scss
│ │ │ │ │ │ │ └── codeeditor.component.ts
│ │ │ │ │ │ ├── contactdetails
│ │ │ │ │ │ │ ├── contactdetails.component.html
│ │ │ │ │ │ │ ├── contactdetails.component.scss
│ │ │ │ │ │ │ └── contactdetails.component.ts
│ │ │ │ │ │ ├── contacts
│ │ │ │ │ │ │ ├── contacts.component.html
│ │ │ │ │ │ │ ├── contacts.component.scss
│ │ │ │ │ │ │ └── contacts.component.ts
│ │ │ │ │ │ ├── extras.module.ts
│ │ │ │ │ │ ├── faq
│ │ │ │ │ │ │ ├── faq.component.html
│ │ │ │ │ │ │ ├── faq.component.scss
│ │ │ │ │ │ │ └── faq.component.ts
│ │ │ │ │ │ ├── filemanager
│ │ │ │ │ │ │ ├── filemanager.component.html
│ │ │ │ │ │ │ ├── filemanager.component.scss
│ │ │ │ │ │ │ └── filemanager.component.ts
│ │ │ │ │ │ ├── followers
│ │ │ │ │ │ │ ├── followers.component.html
│ │ │ │ │ │ │ ├── followers.component.scss
│ │ │ │ │ │ │ └── followers.component.ts
│ │ │ │ │ │ ├── forum
│ │ │ │ │ │ │ ├── forum.component.html
│ │ │ │ │ │ │ ├── forum.component.scss
│ │ │ │ │ │ │ ├── forum.component.ts
│ │ │ │ │ │ │ ├── forumdiscussion
│ │ │ │ │ │ │ │ ├── forumdiscussion.component.html
│ │ │ │ │ │ │ │ ├── forumdiscussion.component.scss
│ │ │ │ │ │ │ │ └── forumdiscussion.component.ts
│ │ │ │ │ │ │ └── forumtopics
│ │ │ │ │ │ │ ├── forumtopics.component.html
│ │ │ │ │ │ │ ├── forumtopics.component.scss
│ │ │ │ │ │ │ └── forumtopics.component.ts
│ │ │ │ │ │ ├── helpcenter
│ │ │ │ │ │ │ ├── helpcenter.component.html
│ │ │ │ │ │ │ ├── helpcenter.component.scss
│ │ │ │ │ │ │ └── helpcenter.component.ts
│ │ │ │ │ │ ├── invoice
│ │ │ │ │ │ │ ├── invoice.component.html
│ │ │ │ │ │ │ ├── invoice.component.scss
│ │ │ │ │ │ │ └── invoice.component.ts
│ │ │ │ │ │ ├── mailbox
│ │ │ │ │ │ │ ├── compose
│ │ │ │ │ │ │ │ ├── compose.component.html
│ │ │ │ │ │ │ │ ├── compose.component.scss
│ │ │ │ │ │ │ │ └── compose.component.ts
│ │ │ │ │ │ │ ├── folder
│ │ │ │ │ │ │ │ ├── folder.component.html
│ │ │ │ │ │ │ │ ├── folder.component.scss
│ │ │ │ │ │ │ │ └── folder.component.ts
│ │ │ │ │ │ │ ├── mailbox.component.html
│ │ │ │ │ │ │ ├── mailbox.component.scss
│ │ │ │ │ │ │ ├── mailbox.component.ts
│ │ │ │ │ │ │ └── view
│ │ │ │ │ │ │ ├── view.component.html
│ │ │ │ │ │ │ ├── view.component.scss
│ │ │ │ │ │ │ └── view.component.ts
│ │ │ │ │ │ ├── plans
│ │ │ │ │ │ │ ├── plans.component.html
│ │ │ │ │ │ │ ├── plans.component.scss
│ │ │ │ │ │ │ └── plans.component.ts
│ │ │ │ │ │ ├── profile
│ │ │ │ │ │ │ ├── profile.component.html
│ │ │ │ │ │ │ ├── profile.component.scss
│ │ │ │ │ │ │ └── profile.component.ts
│ │ │ │ │ │ ├── projects
│ │ │ │ │ │ │ ├── projects.component.html
│ │ │ │ │ │ │ ├── projects.component.scss
│ │ │ │ │ │ │ └── projects.component.ts
│ │ │ │ │ │ ├── projectsdetails
│ │ │ │ │ │ │ ├── projectsdetails.component.html
│ │ │ │ │ │ │ ├── projectsdetails.component.scss
│ │ │ │ │ │ │ └── projectsdetails.component.ts
│ │ │ │ │ │ ├── search
│ │ │ │ │ │ │ ├── search.component.html
│ │ │ │ │ │ │ ├── search.component.scss
│ │ │ │ │ │ │ └── search.component.ts
│ │ │ │ │ │ ├── settings
│ │ │ │ │ │ │ ├── settings.component.html
│ │ │ │ │ │ │ ├── settings.component.scss
│ │ │ │ │ │ │ └── settings.component.ts
│ │ │ │ │ │ ├── socialboard
│ │ │ │ │ │ │ ├── socialboard.component.html
│ │ │ │ │ │ │ ├── socialboard.component.scss
│ │ │ │ │ │ │ └── socialboard.component.ts
│ │ │ │ │ │ ├── teamviewer
│ │ │ │ │ │ │ ├── teamviewer.component.html
│ │ │ │ │ │ │ ├── teamviewer.component.scss
│ │ │ │ │ │ │ └── teamviewer.component.ts
│ │ │ │ │ │ ├── timeline
│ │ │ │ │ │ │ ├── timeline.component.html
│ │ │ │ │ │ │ ├── timeline.component.scss
│ │ │ │ │ │ │ └── timeline.component.ts
│ │ │ │ │ │ ├── todolist
│ │ │ │ │ │ │ ├── todolist.component.html
│ │ │ │ │ │ │ ├── todolist.component.scss
│ │ │ │ │ │ │ └── todolist.component.ts
│ │ │ │ │ │ └── votelinks
│ │ │ │ │ │ ├── votelinks.component.html
│ │ │ │ │ │ ├── votelinks.component.scss
│ │ │ │ │ │ └── votelinks.component.ts
│ │ │ │ │ ├── forms
│ │ │ │ │ │ ├── cropper
│ │ │ │ │ │ │ ├── cropper.component.html
│ │ │ │ │ │ │ ├── cropper.component.scss
│ │ │ │ │ │ │ └── cropper.component.ts
│ │ │ │ │ │ ├── extended
│ │ │ │ │ │ │ ├── extended.component.html
│ │ │ │ │ │ │ ├── extended.component.scss
│ │ │ │ │ │ │ └── extended.component.ts
│ │ │ │ │ │ ├── forms.module.ts
│ │ │ │ │ │ ├── standard
│ │ │ │ │ │ │ ├── standard.component.html
│ │ │ │ │ │ │ ├── standard.component.scss
│ │ │ │ │ │ │ └── standard.component.ts
│ │ │ │ │ │ ├── upload
│ │ │ │ │ │ │ ├── upload.component.html
│ │ │ │ │ │ │ ├── upload.component.scss
│ │ │ │ │ │ │ └── upload.component.ts
│ │ │ │ │ │ └── validation
│ │ │ │ │ │ ├── validation.component.html
│ │ │ │ │ │ ├── validation.component.scss
│ │ │ │ │ │ └── validation.component.ts
│ │ │ │ │ ├── home
│ │ │ │ │ │ ├── home
│ │ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ │ ├── home.component.spec.ts
│ │ │ │ │ │ │ └── home.component.ts
│ │ │ │ │ │ └── home.module.ts
│ │ │ │ │ ├── maps
│ │ │ │ │ │ │ ├── google.component.html
│ │ │ │ │ │ │ ├── google.component.scss
│ │ │ │ │ │ │ └── google.component.ts
│ │ │ │ │ │ ├── maps.module.ts
│ │ │ │ │ │ └── vector
│ │ │ │ │ │ ├── vector.component.html
│ │ │ │ │ │ ├── vector.component.scss
│ │ │ │ │ │ └── vector.component.ts
│ │ │ │ │ ├── menu.ts
│ │ │ │ │ ├── pages
│ │ │ │ │ │ ├── error404
│ │ │ │ │ │ │ ├── error404.component.html
│ │ │ │ │ │ │ ├── error404.component.scss
│ │ │ │ │ │ │ └── error404.component.ts
│ │ │ │ │ │ ├── error500
│ │ │ │ │ │ │ ├── error500.component.html
│ │ │ │ │ │ │ ├── error500.component.scss
│ │ │ │ │ │ │ └── error500.component.ts
│ │ │ │ │ │ ├── lock
│ │ │ │ │ │ │ ├── lock.component.html
│ │ │ │ │ │ │ ├── lock.component.scss
│ │ │ │ │ │ │ └── lock.component.ts
│ │ │ │ │ │ ├── login
│ │ │ │ │ │ │ ├── login.component.html
│ │ │ │ │ │ │ ├── login.component.scss
│ │ │ │ │ │ │ └── login.component.ts
│ │ │ │ │ │ ├── maintenance
│ │ │ │ │ │ │ ├── maintenance.component.html
│ │ │ │ │ │ │ ├── maintenance.component.scss
│ │ │ │ │ │ │ └── maintenance.component.ts
│ │ │ │ │ │ ├── pages.module.ts
│ │ │ │ │ │ ├── recover
│ │ │ │ │ │ │ ├── recover.component.html
│ │ │ │ │ │ │ ├── recover.component.scss
│ │ │ │ │ │ │ └── recover.component.ts
│ │ │ │ │ │ └── register
│ │ │ │ │ │ ├── register.component.html
│ │ │ │ │ │ ├── register.component.scss
│ │ │ │ │ │ └── register.component.ts
│ │ │ │ │ ├── routes.module.ts
│ │ │ │ │ ├── routes.ts
│ │ │ │ │ ├── tables
│ │ │ │ │ │ ├── angulargrid
│ │ │ │ │ │ │ ├── angulargrid.component.html
│ │ │ │ │ │ │ ├── angulargrid.component.scss
│ │ │ │ │ │ │ └── angulargrid.component.ts
│ │ │ │ │ │ ├── datatable
│ │ │ │ │ │ │ ├── datatable.component.html
│ │ │ │ │ │ │ ├── datatable.component.scss
│ │ │ │ │ │ │ ├── datatable.component.ts
│ │ │ │ │ │ │ └── ng2-table-data.ts
│ │ │ │ │ │ ├── extended
│ │ │ │ │ │ │ ├── extended.component.html
│ │ │ │ │ │ │ ├── extended.component.scss
│ │ │ │ │ │ │ └── extended.component.ts
│ │ │ │ │ │ ├── ngxdatatable
│ │ │ │ │ │ │ ├── ngxdatatable.component.html
│ │ │ │ │ │ │ ├── ngxdatatable.component.scss
│ │ │ │ │ │ │ └── ngxdatatable.component.ts
│ │ │ │ │ │ ├── standard
│ │ │ │ │ │ │ ├── standard.component.html
│ │ │ │ │ │ │ ├── standard.component.scss
│ │ │ │ │ │ │ └── standard.component.ts
│ │ │ │ │ │ └── tables.module.ts
│ │ │ │ │ └── widgets
│ │ │ │ │ ├── widgets
│ │ │ │ │ │ ├── widgets.component.html
│ │ │ │ │ │ ├── widgets.component.scss
│ │ │ │ │ │ └── widgets.component.ts
│ │ │ │ │ └── widgets.module.ts
│ │ │ │ ├── shared
│ │ │ │ │ ├── colors
│ │ │ │ │ │ └── colors.service.ts
│ │ │ │ │ ├── directives
│ │ │ │ │ │ ├── checkall
│ │ │ │ │ │ │ └── checkall.directive.ts
│ │ │ │ │ │ ├── easypiechart
│ │ │ │ │ │ │ └── easypiechart.directive.ts
│ │ │ │ │ │ ├── flot
│ │ │ │ │ │ │ └── flot.directive.ts
│ │ │ │ │ │ ├── jqcloud
│ │ │ │ │ │ │ └── jqcloud.directive.ts
│ │ │ │ │ │ ├── now
│ │ │ │ │ │ │ └── now.directive.ts
│ │ │ │ │ │ ├── scrollable
│ │ │ │ │ │ │ └── scrollable.directive.ts
│ │ │ │ │ │ ├── sparkline
│ │ │ │ │ │ │ └── sparkline.directive.ts
│ │ │ │ │ │ └── vectormap
│ │ │ │ │ │ └── vectormap.directive.ts
│ │ │ │ │ ├── shared.module.ts
│ │ │ │ │ └── styles
│ │ │ │ │ ├── app
│ │ │ │ │ │ ├── animate.scss
│ │ │ │ │ │ ├── bootstrap-custom.scss
│ │ │ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ │ │ ├── button-extra.scss
│ │ │ │ │ │ ├── calendar.scss
│ │ │ │ │ │ ├── cards.scss
│ │ │ │ │ │ ├── chart-easypie.scss
│ │ │ │ │ │ ├── chart-flot.scss
│ │ │ │ │ │ ├── circles.scss
│ │ │ │ │ │ ├── dropdown-extra.scss
│ │ │ │ │ │ ├── file-upload.scss
│ │ │ │ │ │ ├── form-select2.scss
│ │ │ │ │ │ ├── form-tags-input.scss
│ │ │ │ │ │ ├── gmap.scss
│ │ │ │ │ │ ├── half-float.scss
│ │ │ │ │ │ ├── inputs.scss
│ │ │ │ │ │ ├── layout-animation.scss
│ │ │ │ │ │ ├── layout-extra.scss
│ │ │ │ │ │ ├── layout.scss
│ │ │ │ │ │ ├── mailbox.scss
│ │ │ │ │ │ ├── offsidebar.scss
│ │ │ │ │ │ ├── placeholder.scss
│ │ │ │ │ │ ├── plans.scss
│ │ │ │ │ │ ├── print.scss
│ │ │ │ │ │ ├── radial-bar.scss
│ │ │ │ │ │ ├── settings.scss
│ │ │ │ │ │ ├── sidebar.scss
│ │ │ │ │ │ ├── slim-scroll.scss
│ │ │ │ │ │ ├── spinner.scss
│ │ │ │ │ │ ├── summernote.scss
│ │ │ │ │ │ ├── table-angulargrid.scss
│ │ │ │ │ │ ├── table-extras.scss
│ │ │ │ │ │ ├── timeline.scss
│ │ │ │ │ │ ├── todo.scss
│ │ │ │ │ │ ├── top-navbar.scss
│ │ │ │ │ │ ├── typeahead.scss
│ │ │ │ │ │ ├── typo.scss
│ │ │ │ │ │ ├── user-block.scss
│ │ │ │ │ │ ├── utils.scss
│ │ │ │ │ │ ├── variables.scss
│ │ │ │ │ │ └── vector-map.scss
│ │ │ │ │ ├── app.scss
│ │ │ │ │ ├── bootstrap
│ │ │ │ │ │ ├── _alert.scss
│ │ │ │ │ │ ├── _badge.scss
│ │ │ │ │ │ ├── bootstrap-grid.scss
│ │ │ │ │ │ ├── bootstrap-reboot.scss
│ │ │ │ │ │ ├── bootstrap.scss
│ │ │ │ │ │ ├── _breadcrumb.scss
│ │ │ │ │ │ ├── _button-group.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _card.scss
│ │ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ │ ├── _close.scss
│ │ │ │ │ │ ├── _code.scss
│ │ │ │ │ │ ├── _custom-forms.scss
│ │ │ │ │ │ ├── _dropdown.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _functions.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _images.scss
│ │ │ │ │ │ ├── _input-group.scss
│ │ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _media.scss
│ │ │ │ │ │ ├── mixins
│ │ │ │ │ │ │ ├── _alert.scss
│ │ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ │ ├── _badge.scss
│ │ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ │ ├── _box-shadow.scss
│ │ │ │ │ │ │ ├── _breakpoints.scss
│ │ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ │ ├── _caret.scss
│ │ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ │ ├── _float.scss
│ │ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ │ ├── _hover.scss
│ │ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ │ ├── _lists.scss
│ │ │ │ │ │ │ ├── _navbar-align.scss
│ │ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ │ ├── _screen-reader.scss
│ │ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ │ ├── _text-hide.scss
│ │ │ │ │ │ │ ├── _text-truncate.scss
│ │ │ │ │ │ │ ├── _transition.scss
│ │ │ │ │ │ │ └── _visibility.scss
│ │ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ │ ├── _modal.scss
│ │ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ │ ├── _nav.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _popover.scss
│ │ │ │ │ │ ├── _print.scss
│ │ │ │ │ │ ├── _progress.scss
│ │ │ │ │ │ ├── _reboot.scss
│ │ │ │ │ │ ├── _root.scss
│ │ │ │ │ │ ├── _tables.scss
│ │ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ │ ├── _transitions.scss
│ │ │ │ │ │ ├── _type.scss
│ │ │ │ │ │ ├── utilities
│ │ │ │ │ │ │ ├── _align.scss
│ │ │ │ │ │ │ ├── _background.scss
│ │ │ │ │ │ │ ├── _borders.scss
│ │ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ │ ├── _display.scss
│ │ │ │ │ │ │ ├── _embed.scss
│ │ │ │ │ │ │ ├── _flex.scss
│ │ │ │ │ │ │ ├── _float.scss
│ │ │ │ │ │ │ ├── _position.scss
│ │ │ │ │ │ │ ├── _screenreaders.scss
│ │ │ │ │ │ │ ├── _sizing.scss
│ │ │ │ │ │ │ ├── _spacing.scss
│ │ │ │ │ │ │ ├── _text.scss
│ │ │ │ │ │ │ └── _visibility.scss
│ │ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ │ └── _variables.scss
│ │ │ │ │ ├── bootstrap.scss
│ │ │ │ │ └── themes
│ │ │ │ │ ├── theme-a.scss
│ │ │ │ │ ├── theme-b.scss
│ │ │ │ │ ├── theme-c.scss
│ │ │ │ │ ├── theme-d.scss
│ │ │ │ │ ├── theme-e.scss
│ │ │ │ │ ├── theme-f.scss
│ │ │ │ │ ├── theme-g.scss
│ │ │ │ │ └── theme-h.scss
│ │ │ │ └── vendor.ts
│ │ │ ├── boot-client.ts
│ │ │ ├── modernizr.js
│ │ │ └── tsconfig.json
│ │ ├── Controllers
│ │ │ └── HomeController.cs
│ │ ├── karma.conf.js
│ │ ├── modernizr-config.json
│ │ ├── package.json
│ │ ├── package-lock.json
│ │ ├── Program.cs
│ │ ├── spec.bundle.js
│ │ ├── Startup.cs
│ │ ├── Views
│ │ │ ├── Home
│ │ │ │ └── Index.cshtml
│ │ │ ├── Shared
│ │ │ │ ├── Error.cshtml
│ │ │ │ └── _Layout.cshtml
│ │ │ ├── _ViewImports.cshtml
│ │ │ └── _ViewStart.cshtml
│ │ ├── webpack.config.js
│ │ ├── webpack.test.js
│ │ └── wwwroot
│ │ ├── assets
│ │ │ ├── codemirror
│ │ │ │ ├── filetree.json
│ │ │ │ ├── mode
│ │ │ │ │ ├── apl
│ │ │ │ │ │ └── apl.js
│ │ │ │ │ ├── asciiarmor
│ │ │ │ │ │ └── asciiarmor.js
│ │ │ │ │ ├── asn.1
│ │ │ │ │ │ └── asn.1.js
│ │ │ │ │ ├── asterisk
│ │ │ │ │ │ └── asterisk.js
│ │ │ │ │ ├── brainfuck
│ │ │ │ │ │ └── brainfuck.js
│ │ │ │ │ ├── clike
│ │ │ │ │ │ └── clike.js
│ │ │ │ │ ├── clojure
│ │ │ │ │ │ └── clojure.js
│ │ │ │ │ ├── cmake
│ │ │ │ │ │ └── cmake.js
│ │ │ │ │ ├── cobol
│ │ │ │ │ │ └── cobol.js
│ │ │ │ │ ├── coffeescript
│ │ │ │ │ │ └── coffeescript.js
│ │ │ │ │ ├── commonlisp
│ │ │ │ │ │ └── commonlisp.js
│ │ │ │ │ ├── crystal
│ │ │ │ │ │ └── crystal.js
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── css.js
│ │ │ │ │ ├── cypher
│ │ │ │ │ │ └── cypher.js
│ │ │ │ │ ├── d
│ │ │ │ │ │ └── d.js
│ │ │ │ │ ├── dart
│ │ │ │ │ │ └── dart.js
│ │ │ │ │ ├── diff
│ │ │ │ │ │ └── diff.js
│ │ │ │ │ ├── django
│ │ │ │ │ │ └── django.js
│ │ │ │ │ ├── dockerfile
│ │ │ │ │ │ └── dockerfile.js
│ │ │ │ │ ├── dtd
│ │ │ │ │ │ └── dtd.js
│ │ │ │ │ ├── dylan
│ │ │ │ │ │ └── dylan.js
│ │ │ │ │ ├── ebnf
│ │ │ │ │ │ └── ebnf.js
│ │ │ │ │ ├── ecl
│ │ │ │ │ │ └── ecl.js
│ │ │ │ │ ├── eiffel
│ │ │ │ │ │ └── eiffel.js
│ │ │ │ │ ├── elm
│ │ │ │ │ │ └── elm.js
│ │ │ │ │ ├── erlang
│ │ │ │ │ │ └── erlang.js
│ │ │ │ │ ├── factor
│ │ │ │ │ │ └── factor.js
│ │ │ │ │ ├── fcl
│ │ │ │ │ │ └── fcl.js
│ │ │ │ │ ├── forth
│ │ │ │ │ │ └── forth.js
│ │ │ │ │ ├── fortran
│ │ │ │ │ │ └── fortran.js
│ │ │ │ │ ├── gas
│ │ │ │ │ │ └── gas.js
│ │ │ │ │ ├── gfm
│ │ │ │ │ │ └── gfm.js
│ │ │ │ │ ├── gherkin
│ │ │ │ │ │ └── gherkin.js
│ │ │ │ │ ├── go
│ │ │ │ │ │ └── go.js
│ │ │ │ │ ├── groovy
│ │ │ │ │ │ └── groovy.js
│ │ │ │ │ ├── haml
│ │ │ │ │ │ └── haml.js
│ │ │ │ │ ├── handlebars
│ │ │ │ │ │ └── handlebars.js
│ │ │ │ │ ├── haskell
│ │ │ │ │ │ └── haskell.js
│ │ │ │ │ ├── haskell-literate
│ │ │ │ │ │ └── haskell-literate.js
│ │ │ │ │ ├── haxe
│ │ │ │ │ │ └── haxe.js
│ │ │ │ │ ├── htmlembedded
│ │ │ │ │ │ └── htmlembedded.js
│ │ │ │ │ ├── htmlmixed
│ │ │ │ │ │ └── htmlmixed.js
│ │ │ │ │ ├── http
│ │ │ │ │ │ └── http.js
│ │ │ │ │ ├── idl
│ │ │ │ │ │ └── idl.js
│ │ │ │ │ ├── javascript
│ │ │ │ │ │ └── javascript.js
│ │ │ │ │ ├── jinja2
│ │ │ │ │ │ └── jinja2.js
│ │ │ │ │ ├── jsx
│ │ │ │ │ │ └── jsx.js
│ │ │ │ │ ├── julia
│ │ │ │ │ │ └── julia.js
│ │ │ │ │ ├── livescript
│ │ │ │ │ │ └── livescript.js
│ │ │ │ │ ├── lua
│ │ │ │ │ │ └── lua.js
│ │ │ │ │ ├── markdown
│ │ │ │ │ │ └── markdown.js
│ │ │ │ │ ├── mathematica
│ │ │ │ │ │ └── mathematica.js
│ │ │ │ │ ├── mbox
│ │ │ │ │ │ └── mbox.js
│ │ │ │ │ ├── meta.js
│ │ │ │ │ ├── mirc
│ │ │ │ │ │ └── mirc.js
│ │ │ │ │ ├── mllike
│ │ │ │ │ │ └── mllike.js
│ │ │ │ │ ├── modelica
│ │ │ │ │ │ └── modelica.js
│ │ │ │ │ ├── mscgen
│ │ │ │ │ │ └── mscgen.js
│ │ │ │ │ ├── mumps
│ │ │ │ │ │ └── mumps.js
│ │ │ │ │ ├── nginx
│ │ │ │ │ │ └── nginx.js
│ │ │ │ │ ├── nsis
│ │ │ │ │ │ └── nsis.js
│ │ │ │ │ ├── ntriples
│ │ │ │ │ │ └── ntriples.js
│ │ │ │ │ ├── octave
│ │ │ │ │ │ └── octave.js
│ │ │ │ │ ├── oz
│ │ │ │ │ │ └── oz.js
│ │ │ │ │ ├── pascal
│ │ │ │ │ │ └── pascal.js
│ │ │ │ │ ├── pegjs
│ │ │ │ │ │ └── pegjs.js
│ │ │ │ │ ├── perl
│ │ │ │ │ │ └── perl.js
│ │ │ │ │ ├── php
│ │ │ │ │ │ └── php.js
│ │ │ │ │ ├── pig
│ │ │ │ │ │ └── pig.js
│ │ │ │ │ ├── powershell
│ │ │ │ │ │ └── powershell.js
│ │ │ │ │ ├── properties
│ │ │ │ │ │ └── properties.js
│ │ │ │ │ ├── protobuf
│ │ │ │ │ │ └── protobuf.js
│ │ │ │ │ ├── pug
│ │ │ │ │ │ └── pug.js
│ │ │ │ │ ├── puppet
│ │ │ │ │ │ └── puppet.js
│ │ │ │ │ ├── python
│ │ │ │ │ │ └── python.js
│ │ │ │ │ ├── q
│ │ │ │ │ │ └── q.js
│ │ │ │ │ ├── r
│ │ │ │ │ │ └── r.js
│ │ │ │ │ ├── rpm
│ │ │ │ │ │ ├── changes
│ │ │ │ │ │ │ └── index.html
│ │ │ │ │ │ └── rpm.js
│ │ │ │ │ ├── rst
│ │ │ │ │ │ └── rst.js
│ │ │ │ │ ├── ruby
│ │ │ │ │ │ └── ruby.js
│ │ │ │ │ ├── rust
│ │ │ │ │ │ └── rust.js
│ │ │ │ │ ├── sas
│ │ │ │ │ │ └── sas.js
│ │ │ │ │ ├── sass
│ │ │ │ │ │ └── sass.js
│ │ │ │ │ ├── scheme
│ │ │ │ │ │ └── scheme.js
│ │ │ │ │ ├── shell
│ │ │ │ │ │ └── shell.js
│ │ │ │ │ ├── sieve
│ │ │ │ │ │ └── sieve.js
│ │ │ │ │ ├── slim
│ │ │ │ │ │ └── slim.js
│ │ │ │ │ ├── smalltalk
│ │ │ │ │ │ └── smalltalk.js
│ │ │ │ │ ├── smarty
│ │ │ │ │ │ └── smarty.js
│ │ │ │ │ ├── solr
│ │ │ │ │ │ └── solr.js
│ │ │ │ │ ├── soy
│ │ │ │ │ │ └── soy.js
│ │ │ │ │ ├── sparql
│ │ │ │ │ │ └── sparql.js
│ │ │ │ │ ├── spreadsheet
│ │ │ │ │ │ └── spreadsheet.js
│ │ │ │ │ ├── sql
│ │ │ │ │ │ └── sql.js
│ │ │ │ │ ├── stex
│ │ │ │ │ │ └── stex.js
│ │ │ │ │ ├── stylus
│ │ │ │ │ │ └── stylus.js
│ │ │ │ │ ├── swift
│ │ │ │ │ │ └── swift.js
│ │ │ │ │ ├── tcl
│ │ │ │ │ │ └── tcl.js
│ │ │ │ │ ├── textile
│ │ │ │ │ │ └── textile.js
│ │ │ │ │ ├── tiddlywiki
│ │ │ │ │ │ ├── tiddlywiki.css
│ │ │ │ │ │ └── tiddlywiki.js
│ │ │ │ │ ├── tiki
│ │ │ │ │ │ ├── tiki.css
│ │ │ │ │ │ └── tiki.js
│ │ │ │ │ ├── toml
│ │ │ │ │ │ └── toml.js
│ │ │ │ │ ├── tornado
│ │ │ │ │ │ └── tornado.js
│ │ │ │ │ ├── troff
│ │ │ │ │ │ └── troff.js
│ │ │ │ │ ├── ttcn
│ │ │ │ │ │ └── ttcn.js
│ │ │ │ │ ├── ttcn-cfg
│ │ │ │ │ │ └── ttcn-cfg.js
│ │ │ │ │ ├── turtle
│ │ │ │ │ │ └── turtle.js
│ │ │ │ │ ├── twig
│ │ │ │ │ │ └── twig.js
│ │ │ │ │ ├── vb
│ │ │ │ │ │ └── vb.js
│ │ │ │ │ ├── vbscript
│ │ │ │ │ │ └── vbscript.js
│ │ │ │ │ ├── velocity
│ │ │ │ │ │ └── velocity.js
│ │ │ │ │ ├── verilog
│ │ │ │ │ │ └── verilog.js
│ │ │ │ │ ├── vhdl
│ │ │ │ │ │ └── vhdl.js
│ │ │ │ │ ├── vue
│ │ │ │ │ │ └── vue.js
│ │ │ │ │ ├── webidl
│ │ │ │ │ │ └── webidl.js
│ │ │ │ │ ├── xml
│ │ │ │ │ │ └── xml.js
│ │ │ │ │ ├── xquery
│ │ │ │ │ │ └── xquery.js
│ │ │ │ │ ├── yacas
│ │ │ │ │ │ └── yacas.js
│ │ │ │ │ ├── yaml
│ │ │ │ │ │ └── yaml.js
│ │ │ │ │ ├── yaml-frontmatter
│ │ │ │ │ │ └── yaml-frontmatter.js
│ │ │ │ │ └── z80
│ │ │ │ │ └── z80.js
│ │ │ │ ├── source
│ │ │ │ │ ├── another.html
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── style.css
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── ts
│ │ │ │ │ └── script.ts
│ │ │ │ └── theme
│ │ │ │ ├── 3024-day.css
│ │ │ │ ├── 3024-night.css
│ │ │ │ ├── abcdef.css
│ │ │ │ ├── ambiance.css
│ │ │ │ ├── ambiance-mobile.css
│ │ │ │ ├── base16-dark.css
│ │ │ │ ├── base16-light.css
│ │ │ │ ├── bespin.css
│ │ │ │ ├── blackboard.css
│ │ │ │ ├── cobalt.css
│ │ │ │ ├── colorforth.css
│ │ │ │ ├── dracula.css
│ │ │ │ ├── duotone-dark.css
│ │ │ │ ├── duotone-light.css
│ │ │ │ ├── eclipse.css
│ │ │ │ ├── elegant.css
│ │ │ │ ├── erlang-dark.css
│ │ │ │ ├── hopscotch.css
│ │ │ │ ├── icecoder.css
│ │ │ │ ├── isotope.css
│ │ │ │ ├── lesser-dark.css
│ │ │ │ ├── liquibyte.css
│ │ │ │ ├── material.css
│ │ │ │ ├── mbo.css
│ │ │ │ ├── mdn-like.css
│ │ │ │ ├── midnight.css
│ │ │ │ ├── monokai.css
│ │ │ │ ├── neat.css
│ │ │ │ ├── neo.css
│ │ │ │ ├── night.css
│ │ │ │ ├── panda-syntax.css
│ │ │ │ ├── paraiso-dark.css
│ │ │ │ ├── paraiso-light.css
│ │ │ │ ├── pastel-on-dark.css
│ │ │ │ ├── railscasts.css
│ │ │ │ ├── rubyblue.css
│ │ │ │ ├── seti.css
│ │ │ │ ├── solarized.css
│ │ │ │ ├── the-matrix.css
│ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ ├── ttcn.css
│ │ │ │ ├── twilight.css
│ │ │ │ ├── vibrant-ink.css
│ │ │ │ ├── xq-dark.css
│ │ │ │ ├── xq-light.css
│ │ │ │ ├── yeti.css
│ │ │ │ └── zenburn.css
│ │ │ ├── company.json
│ │ │ ├── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── es_AR.json
│ │ │ ├── img
│ │ │ │ ├── angular.svg
│ │ │ │ ├── bg10.jpg
│ │ │ │ ├── bg1.jpg
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── bg3.jpg
│ │ │ │ ├── bg4.jpg
│ │ │ │ ├── bg5.jpg
│ │ │ │ ├── bg6.jpg
│ │ │ │ ├── bg7.jpg
│ │ │ │ ├── bg8.jpg
│ │ │ │ ├── bg9.jpg
│ │ │ │ ├── dummy.png
│ │ │ │ ├── lock-bg.jpg
│ │ │ │ ├── logo.png
│ │ │ │ ├── logo-single.png
│ │ │ │ ├── mb-sample.jpg
│ │ │ │ ├── mockup.png
│ │ │ │ ├── preloader
│ │ │ │ │ ├── preloader.empty.png
│ │ │ │ │ └── preloader.full.png
│ │ │ │ ├── profile-bg.jpg
│ │ │ │ └── user
│ │ │ │ ├── 01.jpg
│ │ │ │ ├── 02.jpg
│ │ │ │ ├── 03.jpg
│ │ │ │ ├── 04.jpg
│ │ │ │ ├── 05.jpg
│ │ │ │ ├── 06.jpg
│ │ │ │ ├── 07.jpg
│ │ │ │ ├── 08.jpg
│ │ │ │ ├── 09.jpg
│ │ │ │ ├── 10.jpg
│ │ │ │ ├── 11.jpg
│ │ │ │ ├── 12.jpg
│ │ │ │ └── 13.jpg
│ │ │ └── server
│ │ │ ├── ag-owinners.json
│ │ │ ├── chart
│ │ │ │ ├── area.json
│ │ │ │ ├── bar.json
│ │ │ │ ├── barstacked.json
│ │ │ │ ├── barstackedv2.json
│ │ │ │ ├── donut.json
│ │ │ │ ├── line.json
│ │ │ │ ├── pie.json
│ │ │ │ ├── realtime.json
│ │ │ │ ├── spline.json
│ │ │ │ ├── splinev2.json
│ │ │ │ └── splinev3.json
│ │ │ ├── datatable.json
│ │ │ └── mails.json
│ │ ├── favicon.ico
│ │ └── preloader
│ │ ├── preloader.css
│ │ └── preloader.js
│ └── Angle.sln
├── netcore-jquery
│ └── Angle
│ ├── Angle
│ │ ├── Angle.csproj
│ │ ├── Angle.csproj.user
│ │ ├── appsettings.Development.json
│ │ ├── appsettings.json
│ │ ├── bower.json
│ │ ├── Controllers
│ │ │ ├── BlogController.cs
│ │ │ ├── ChartsController.cs
│ │ │ ├── DashboardController.cs
│ │ │ ├── DocumentationController.cs
│ │ │ ├── EcommerceController.cs
│ │ │ ├── ElementsController.cs
│ │ │ ├── ExtrasController.cs
│ │ │ ├── FormsController.cs
│ │ │ ├── ForumController.cs
│ │ │ ├── HomeController.cs
│ │ │ ├── MapsController.cs
│ │ │ ├── MultilevelsController.cs
│ │ │ ├── PagesController.cs
│ │ │ ├── TablesController.cs
│ │ │ └── WidgetsController.cs
│ │ ├── gulpfile.js
│ │ ├── Helpers
│ │ │ └── HMTLHelperExtensions.cs
│ │ ├── package.json
│ │ ├── package-lock.json
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── launchSettings.json
│ │ ├── Startup.cs
│ │ ├── Views
│ │ │ ├── Blog
│ │ │ │ ├── BlogArticles.cshtml
│ │ │ │ ├── BlogArticleView.cshtml
│ │ │ │ ├── Blog.cshtml
│ │ │ │ └── BlogPost.cshtml
│ │ │ ├── Charts
│ │ │ │ ├── ChartChartist.cshtml
│ │ │ │ ├── ChartFlot.cshtml
│ │ │ │ ├── ChartJS.cshtml
│ │ │ │ ├── ChartMorris.cshtml
│ │ │ │ ├── ChartRadial.cshtml
│ │ │ │ └── ChartRickshaw.cshtml
│ │ │ ├── Dashboard
│ │ │ │ ├── Dashboard_h.cshtml
│ │ │ │ ├── Dashboard_v1.cshtml
│ │ │ │ ├── Dashboard_v2.cshtml
│ │ │ │ └── Dashboard_v3.cshtml
│ │ │ ├── Documentation
│ │ │ │ └── Index.cshtml
│ │ │ ├── Ecommerce
│ │ │ │ ├── EcommerceCheckout.cshtml
│ │ │ │ ├── EcommerceOrders.cshtml
│ │ │ │ ├── EcommerceOrderView.cshtml
│ │ │ │ ├── EcommerceProducts.cshtml
│ │ │ │ └── EcommerceProductView.cshtml
│ │ │ ├── Elements
│ │ │ │ ├── Animations.cshtml
│ │ │ │ ├── Buttons.cshtml
│ │ │ │ ├── Carousel.cshtml
│ │ │ │ ├── Colors.cshtml
│ │ │ │ ├── DropdownAnimations.cshtml
│ │ │ │ ├── Grid.cshtml
│ │ │ │ ├── GridMasonry.cshtml
│ │ │ │ ├── IconsFont.cshtml
│ │ │ │ ├── IconsWeather.cshtml
│ │ │ │ ├── Nestable.cshtml
│ │ │ │ ├── Notifications.cshtml
│ │ │ │ ├── Panels.cshtml
│ │ │ │ ├── Portlets.cshtml
│ │ │ │ ├── Sortable.cshtml
│ │ │ │ ├── Spinners.cshtml
│ │ │ │ ├── SweetAlert.cshtml
│ │ │ │ ├── Tour.cshtml
│ │ │ │ └── Typo.cshtml
│ │ │ ├── Extras
│ │ │ │ ├── BugTracker.cshtml
│ │ │ │ ├── Calendar.cshtml
│ │ │ │ ├── ContactDetails.cshtml
│ │ │ │ ├── Contacts.cshtml
│ │ │ │ ├── Faq.cshtml
│ │ │ │ ├── FileManager.cshtml
│ │ │ │ ├── Followers.cshtml
│ │ │ │ ├── HelpCenter.cshtml
│ │ │ │ ├── Invoice.cshtml
│ │ │ │ ├── Mailbox.cshtml
│ │ │ │ ├── Plans.cshtml
│ │ │ │ ├── ProjectDetails.cshtml
│ │ │ │ ├── Projects.cshtml
│ │ │ │ ├── Search.cshtml
│ │ │ │ ├── Settings.cshtml
│ │ │ │ ├── SocialBoard.cshtml
│ │ │ │ ├── TeamViewer.cshtml
│ │ │ │ ├── Timeline.cshtml
│ │ │ │ ├── Todo.cshtml
│ │ │ │ ├── UserProfile.cshtml
│ │ │ │ └── VoteLinks.cshtml
│ │ │ ├── Forms
│ │ │ │ ├── FormExtended.cshtml
│ │ │ │ ├── FormImgCrop.cshtml
│ │ │ │ ├── FormStandard.cshtml
│ │ │ │ ├── FormUpload.cshtml
│ │ │ │ ├── FormValidation.cshtml
│ │ │ │ ├── FormWizard.cshtml
│ │ │ │ └── FormXEditable.cshtml
│ │ │ ├── Forum
│ │ │ │ ├── ForumCategories.cshtml
│ │ │ │ ├── ForumDiscussion.cshtml
│ │ │ │ └── ForumTopics.cshtml
│ │ │ ├── Home
│ │ │ │ ├── About.cshtml
│ │ │ │ ├── Contact.cshtml
│ │ │ │ └── Index.cshtml
│ │ │ ├── Maps
│ │ │ │ ├── MapsGoogle.cshtml
│ │ │ │ └── MapsVector.cshtml
│ │ │ ├── Multilevels
│ │ │ │ ├── Multilevel_1.cshtml
│ │ │ │ └── Multilevel_3.cshtml
│ │ │ ├── Pages
│ │ │ │ ├── Error_404.cshtml
│ │ │ │ ├── Error_500.cshtml
│ │ │ │ ├── Lock.cshtml
│ │ │ │ ├── Login.cshtml
│ │ │ │ ├── Maintenance.cshtml
│ │ │ │ ├── Recover.cshtml
│ │ │ │ ├── Register.cshtml
│ │ │ │ └── Template.cshtml
│ │ │ ├── Shared
│ │ │ │ ├── Error.cshtml
│ │ │ │ ├── _Footer.cshtml
│ │ │ │ ├── _Layout.cshtml
│ │ │ │ ├── _LayoutHorizontal.cshtml
│ │ │ │ ├── _LayoutPage.cshtml
│ │ │ │ ├── _Offsidebar.cshtml
│ │ │ │ ├── _Sidebar.cshtml
│ │ │ │ ├── _TopNavbar.cshtml
│ │ │ │ └── _TopNavbarHorizontal.cshtml
│ │ │ ├── Tables
│ │ │ │ ├── TableDatatable.cshtml
│ │ │ │ ├── TableExtended.cshtml
│ │ │ │ ├── TableJQGrid.cshtml
│ │ │ │ └── TableStandard.cshtml
│ │ │ ├── _ViewImports.cshtml
│ │ │ ├── _ViewStart.cshtml
│ │ │ └── Widgets
│ │ │ └── Index.cshtml
│ │ └── wwwroot
│ │ ├── css
│ │ │ ├── app.css
│ │ │ ├── bootstrap.css
│ │ │ ├── theme-a.css
│ │ │ ├── theme-b.css
│ │ │ ├── theme-c.css
│ │ │ ├── theme-d.css
│ │ │ ├── theme-e.css
│ │ │ ├── theme-f.css
│ │ │ ├── theme-g.css
│ │ │ └── theme-h.css
│ │ ├── documentation
│ │ │ └── readme.md
│ │ ├── favicon.ico
│ │ ├── i18n
│ │ │ ├── site-en.json
│ │ │ └── site-es.json
│ │ ├── images
│ │ │ ├── ASP-NET-Banners-01.png
│ │ │ ├── ASP-NET-Banners-02.png
│ │ │ ├── Banner-01-Azure.png
│ │ │ ├── Banner-02-VS.png
│ │ │ ├── banner1.svg
│ │ │ ├── banner2.svg
│ │ │ ├── banner3.svg
│ │ │ ├── banner4.svg
│ │ │ ├── bg10.jpg
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.jpg
│ │ │ ├── bg3.jpg
│ │ │ ├── bg4.jpg
│ │ │ ├── bg5.jpg
│ │ │ ├── bg6.jpg
│ │ │ ├── bg7.jpg
│ │ │ ├── bg8.jpg
│ │ │ ├── bg9.jpg
│ │ │ ├── bootstrap-colorpicker
│ │ │ │ ├── alpha-horizontal.png
│ │ │ │ ├── alpha.png
│ │ │ │ ├── hue-horizontal.png
│ │ │ │ ├── hue.png
│ │ │ │ └── saturation.png
│ │ │ ├── dummy.png
│ │ │ ├── lock-bg.jpg
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ ├── mb-sample.jpg
│ │ │ ├── mockup.png
│ │ │ ├── profile-bg.jpg
│ │ │ └── user
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 04.jpg
│ │ │ ├── 05.jpg
│ │ │ ├── 06.jpg
│ │ │ ├── 07.jpg
│ │ │ ├── 08.jpg
│ │ │ ├── 09.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ └── 13.jpg
│ │ ├── js
│ │ │ └── app.js
│ │ ├── master
│ │ │ ├── js
│ │ │ │ ├── app.init.js
│ │ │ │ ├── custom
│ │ │ │ │ └── custom.js
│ │ │ │ └── modules
│ │ │ │ ├── bootstrap-start.js
│ │ │ │ ├── calendar.js
│ │ │ │ ├── chart-easypie.js
│ │ │ │ ├── chartist.js
│ │ │ │ ├── chart.js
│ │ │ │ ├── chart-knob.js
│ │ │ │ ├── clear-storage.js
│ │ │ │ ├── color-picker.js
│ │ │ │ ├── constants.js
│ │ │ │ ├── demo
│ │ │ │ │ ├── demo-datatable.js
│ │ │ │ │ ├── demo-flot.js
│ │ │ │ │ ├── demo-forms.js
│ │ │ │ │ ├── demo-jqcloud.js
│ │ │ │ │ ├── demo-jqgrid.js
│ │ │ │ │ ├── demo-nestable.js
│ │ │ │ │ ├── demo-panels.js
│ │ │ │ │ ├── demo-rtl.js
│ │ │ │ │ ├── demo-search.js
│ │ │ │ │ ├── demo-sortable.js
│ │ │ │ │ ├── demo-upload.js
│ │ │ │ │ ├── demo-vector-map.js
│ │ │ │ │ ├── demo-wizard.js
│ │ │ │ │ └── demo-xeditable.js
│ │ │ │ ├── easypiechart.js
│ │ │ │ ├── flatdoc.js
│ │ │ │ ├── fullscreen.js
│ │ │ │ ├── gmap.js
│ │ │ │ ├── imagecrop.js
│ │ │ │ ├── load-css.js
│ │ │ │ ├── localize.js
│ │ │ │ ├── maps-vector.js
│ │ │ │ ├── morris.js
│ │ │ │ ├── navbar-search.js
│ │ │ │ ├── notify.js
│ │ │ │ ├── now.js
│ │ │ │ ├── panel-tools.js
│ │ │ │ ├── play-animation.js
│ │ │ │ ├── porlets.js
│ │ │ │ ├── rickshaw.js
│ │ │ │ ├── select2.js
│ │ │ │ ├── sidebar.js
│ │ │ │ ├── skycons.js
│ │ │ │ ├── slimscroll.js
│ │ │ │ ├── sparkline.js
│ │ │ │ ├── sweetalert.js
│ │ │ │ ├── table-checkall.js
│ │ │ │ ├── toggle-state.js
│ │ │ │ ├── tour.js
│ │ │ │ └── utils.js
│ │ │ └── sass
│ │ │ ├── app
│ │ │ │ ├── alerts.scss
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── breadcrumbs.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── calendar.scss
│ │ │ │ ├── chart-easypie.scss
│ │ │ │ ├── chart-flot.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── datatable.scss
│ │ │ │ ├── docs.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── form-elements.scss
│ │ │ │ ├── form-imgcrop.scss
│ │ │ │ ├── form-tags.scss
│ │ │ │ ├── form-validation.scss
│ │ │ │ ├── form-wizard.scss
│ │ │ │ ├── gmap.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── jqgrid.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── mailbox.scss
│ │ │ │ ├── masonry-grid.scss
│ │ │ │ ├── media-queries.scss
│ │ │ │ ├── nestable.scss
│ │ │ │ ├── notify.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── panels.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── plans.scss
│ │ │ │ ├── plugins.scss
│ │ │ │ ├── portlets.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── progress-extra.scss
│ │ │ │ ├── radial-bar.scss
│ │ │ │ ├── row-extra.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── spinner.scss
│ │ │ │ ├── table-extras.scss
│ │ │ │ ├── table-grid.scss
│ │ │ │ ├── timeline.scss
│ │ │ │ ├── todo.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── user-block.scss
│ │ │ │ ├── utils-definitions.scss
│ │ │ │ ├── utils.scss
│ │ │ │ ├── variables.scss
│ │ │ │ ├── vector-map.scss
│ │ │ │ └── widget.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _badges.scss
│ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ ├── _close.scss
│ │ │ │ │ ├── _code.scss
│ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _media.scss
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modals.scss
│ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ ├── _navs.scss
│ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ ├── _pager.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ ├── _print.scss
│ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _tables.scss
│ │ │ │ │ ├── _theme.scss
│ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ ├── _variables.scss
│ │ │ │ │ └── _wells.scss
│ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ ├── _bootstrap.scss
│ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ └── server
│ │ ├── datatable.json
│ │ ├── jqgrid.json
│ │ ├── jqgrid-tree.json
│ │ ├── xeditable-groups.json
│ │ └── xeditable.json
│ └── Angle.sln
├── reactjs
│ ├── app
│ │ ├── App.jsx
│ │ ├── components
│ │ │ ├── Blog
│ │ │ │ ├── BlogArticles.jsx
│ │ │ │ ├── BlogArticleView.jsx
│ │ │ │ ├── BlogArticleView.run.js
│ │ │ │ ├── BlogList.jsx
│ │ │ │ ├── BlogList.run.js
│ │ │ │ ├── BlogPost.jsx
│ │ │ │ └── BlogPost.run.js
│ │ │ ├── Charts
│ │ │ │ ├── ChartChartist.jsx
│ │ │ │ ├── ChartChartist.run.js
│ │ │ │ ├── ChartChartJS.jsx
│ │ │ │ ├── ChartChartJS.run.js
│ │ │ │ ├── ChartFlot.jsx
│ │ │ │ ├── ChartFlot.run.js
│ │ │ │ ├── ChartMorris.jsx
│ │ │ │ ├── ChartMorris.run.js
│ │ │ │ ├── ChartRadial.jsx
│ │ │ │ ├── ChartRadial.run.js
│ │ │ │ ├── ChartRickshaw.jsx
│ │ │ │ └── ChartRickshaw.run.js
│ │ │ ├── Common
│ │ │ │ ├── constants.js
│ │ │ │ ├── easypiechart.js
│ │ │ │ ├── fullscreen.js
│ │ │ │ ├── load-themes.js
│ │ │ │ ├── localize.js
│ │ │ │ ├── maps-google.js
│ │ │ │ ├── maps-vector.js
│ │ │ │ ├── notify.js
│ │ │ │ ├── panel-tools.js
│ │ │ │ ├── slimscroll.js
│ │ │ │ ├── sparkline.js
│ │ │ │ ├── toggle-state.js
│ │ │ │ ├── trigger-resize.js
│ │ │ │ └── utils.js
│ │ │ ├── Dashboard
│ │ │ │ ├── DashboardV1.jsx
│ │ │ │ ├── DashboardV1.run.js
│ │ │ │ ├── DashboardV2.jsx
│ │ │ │ ├── DashboardV2.run.js
│ │ │ │ ├── DashboardV3.jsx
│ │ │ │ └── DashboardV3.run.js
│ │ │ ├── Ecommerce
│ │ │ │ ├── EcommerceCheckout.jsx
│ │ │ │ ├── EcommerceOrders.jsx
│ │ │ │ ├── EcommerceOrders.run.js
│ │ │ │ ├── EcommerceOrderView.jsx
│ │ │ │ ├── EcommerceProducts.jsx
│ │ │ │ ├── EcommerceProducts.run.js
│ │ │ │ └── EcommerceProductView.jsx
│ │ │ ├── Elements
│ │ │ │ ├── Animation.jsx
│ │ │ │ ├── Animation.run.js
│ │ │ │ ├── Buttons.jsx
│ │ │ │ ├── Carousel.jsx
│ │ │ │ ├── Colors.jsx
│ │ │ │ ├── DropdownAnimation.jsx
│ │ │ │ ├── FontIcons.jsx
│ │ │ │ ├── Grid.jsx
│ │ │ │ ├── GridMasonry.jsx
│ │ │ │ ├── Nestable.jsx
│ │ │ │ ├── Nestable.run.js
│ │ │ │ ├── Notifications.jsx
│ │ │ │ ├── Notifications.run.js
│ │ │ │ ├── Panels.jsx
│ │ │ │ ├── Panels.run.js
│ │ │ │ ├── Sortable.jsx
│ │ │ │ ├── Sortable.run.js
│ │ │ │ ├── Spinner.jsx
│ │ │ │ ├── SweetAlert.jsx
│ │ │ │ ├── SweetAlert.run.js
│ │ │ │ ├── Tour.jsx
│ │ │ │ ├── Tour.run.js
│ │ │ │ ├── Typography.jsx
│ │ │ │ └── WeatherIcons.jsx
│ │ │ ├── Extras
│ │ │ │ ├── BugTracker.jsx
│ │ │ │ ├── BugTracker.run.js
│ │ │ │ ├── Calendar.jsx
│ │ │ │ ├── Calendar.run.js
│ │ │ │ ├── ContactDetails.jsx
│ │ │ │ ├── Contacts.jsx
│ │ │ │ ├── Faq.jsx
│ │ │ │ ├── FileManager.jsx
│ │ │ │ ├── FileManager.run.js
│ │ │ │ ├── Followers.jsx
│ │ │ │ ├── HelpCenter.jsx
│ │ │ │ ├── Invoice.jsx
│ │ │ │ ├── Mailbox.jsx
│ │ │ │ ├── Plans.jsx
│ │ │ │ ├── Profile.jsx
│ │ │ │ ├── Profile.run.js
│ │ │ │ ├── ProjectDetails.jsx
│ │ │ │ ├── ProjectDetails.run.js
│ │ │ │ ├── Projects.jsx
│ │ │ │ ├── Projects.run.js
│ │ │ │ ├── Search.jsx
│ │ │ │ ├── Search.run.js
│ │ │ │ ├── Settings.jsx
│ │ │ │ ├── Settings.run.js
│ │ │ │ ├── SocialBoard.jsx
│ │ │ │ ├── TeamViewer.jsx
│ │ │ │ ├── TeamViewer.run.js
│ │ │ │ ├── Timeline.jsx
│ │ │ │ ├── Todo.jsx
│ │ │ │ └── VoteLinks.jsx
│ │ │ ├── Forms
│ │ │ │ ├── FormCropper.jsx
│ │ │ │ ├── FormExtended.jsx
│ │ │ │ ├── FormExtended.run.js
│ │ │ │ ├── FormStandard.jsx
│ │ │ │ ├── FormUpload.jsx
│ │ │ │ ├── FormValidation.jsx
│ │ │ │ ├── FormValidation.run.js
│ │ │ │ ├── FormWizard.jsx
│ │ │ │ ├── FormWizard.run.js
│ │ │ │ ├── FormXEditable.jsx
│ │ │ │ └── FormXEditable.run.js
│ │ │ ├── Forum
│ │ │ │ ├── ForumCategories.jsx
│ │ │ │ ├── ForumDiscussion.jsx
│ │ │ │ └── ForumTopics.jsx
│ │ │ ├── Layout
│ │ │ │ ├── BaseHorizontal.jsx
│ │ │ │ ├── Base.jsx
│ │ │ │ ├── BasePage.jsx
│ │ │ │ ├── ContentWrapper.jsx
│ │ │ │ ├── Footer.jsx
│ │ │ │ ├── HeaderHorizontal.jsx
│ │ │ │ ├── Header.jsx
│ │ │ │ ├── Header.run.js
│ │ │ │ ├── Offsidebar.jsx
│ │ │ │ ├── Offsidebar.run.js
│ │ │ │ ├── Sidebar.jsx
│ │ │ │ └── Sidebar.run.js
│ │ │ ├── Maps
│ │ │ │ ├── MapsGoogle.jsx
│ │ │ │ ├── MapsGoogle.run.js
│ │ │ │ ├── MapsVector.jsx
│ │ │ │ └── MapsVector.run.js
│ │ │ ├── Pages
│ │ │ │ ├── Error500.jsx
│ │ │ │ ├── Lock.jsx
│ │ │ │ ├── Login.jsx
│ │ │ │ ├── Maintenance.jsx
│ │ │ │ ├── NotFound.jsx
│ │ │ │ ├── Recover.jsx
│ │ │ │ └── Register.jsx
│ │ │ ├── Tables
│ │ │ │ ├── Datatable.jsx
│ │ │ │ ├── Datatable.run.js
│ │ │ │ ├── JqGrid.jsx
│ │ │ │ ├── JqGrid.run.js
│ │ │ │ ├── TableExtended.jsx
│ │ │ │ ├── TableExtended.run.js
│ │ │ │ └── TableStandard.jsx
│ │ │ └── Widgets
│ │ │ ├── Widgets.jsx
│ │ │ └── Widgets.run.js
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── fontawesome-webfont.woff2
│ │ │ ├── Simple-Line-Icons.eot
│ │ │ ├── Simple-Line-Icons.svg
│ │ │ ├── Simple-Line-Icons.ttf
│ │ │ ├── Simple-Line-Icons.woff
│ │ │ ├── Simple-Line-Icons.woff2
│ │ │ ├── weathericons-regular-webfont.eot
│ │ │ ├── weathericons-regular-webfont.svg
│ │ │ ├── weathericons-regular-webfont.ttf
│ │ │ ├── weathericons-regular-webfont.woff
│ │ │ └── weathericons-regular-webfont.woff2
│ │ ├── img
│ │ │ ├── bg10.jpg
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.jpg
│ │ │ ├── bg3.jpg
│ │ │ ├── bg4.jpg
│ │ │ ├── bg5.jpg
│ │ │ ├── bg6.jpg
│ │ │ ├── bg7.jpg
│ │ │ ├── bg8.jpg
│ │ │ ├── bg9.jpg
│ │ │ ├── bootstrap-colorpicker
│ │ │ │ ├── alpha-horizontal.png
│ │ │ │ ├── alpha.png
│ │ │ │ ├── hue-horizontal.png
│ │ │ │ ├── hue.png
│ │ │ │ └── saturation.png
│ │ │ ├── chosen-sprite@2x.png
│ │ │ ├── chosen-sprite.png
│ │ │ ├── clear.png
│ │ │ ├── dummy.png
│ │ │ ├── jqui
│ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ ├── loading.gif
│ │ │ ├── lock-bg.jpg
│ │ │ ├── logo.png
│ │ │ ├── logo-single.png
│ │ │ ├── mb-sample.jpg
│ │ │ ├── mockup.png
│ │ │ ├── profile-bg.jpg
│ │ │ ├── progressbar.gif
│ │ │ └── user
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 04.jpg
│ │ │ ├── 05.jpg
│ │ │ ├── 06.jpg
│ │ │ ├── 07.jpg
│ │ │ ├── 08.jpg
│ │ │ ├── 09.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ └── 13.jpg
│ │ ├── index.html
│ │ ├── modernizr.js
│ │ ├── Routes.jsx
│ │ ├── server
│ │ │ ├── datatable.json
│ │ │ ├── i18n
│ │ │ │ ├── site-en.json
│ │ │ │ └── site-es.json
│ │ │ ├── jqgrid.json
│ │ │ ├── jqgrid-tree.json
│ │ │ ├── xeditable-groups.json
│ │ │ └── xeditable.res
│ │ ├── styles
│ │ │ ├── app
│ │ │ │ ├── alerts.scss
│ │ │ │ ├── animate.scss
│ │ │ │ ├── bootstrap-reset.scss
│ │ │ │ ├── breadcrumbs.scss
│ │ │ │ ├── button-extra.scss
│ │ │ │ ├── calendar.scss
│ │ │ │ ├── chart-easypie.scss
│ │ │ │ ├── chart-flot.scss
│ │ │ │ ├── circles.scss
│ │ │ │ ├── datatable.scss
│ │ │ │ ├── docs.scss
│ │ │ │ ├── dropdown-extra.scss
│ │ │ │ ├── form-elements.scss
│ │ │ │ ├── form-imgcrop.scss
│ │ │ │ ├── form-tags.scss
│ │ │ │ ├── form-validation.scss
│ │ │ │ ├── form-wizard.scss
│ │ │ │ ├── gmap.scss
│ │ │ │ ├── half-float.scss
│ │ │ │ ├── jqgrid.scss
│ │ │ │ ├── layout-animation.scss
│ │ │ │ ├── layout-extra.scss
│ │ │ │ ├── layout.scss
│ │ │ │ ├── mailbox.scss
│ │ │ │ ├── masonry-grid.scss
│ │ │ │ ├── media-queries.scss
│ │ │ │ ├── nestable.scss
│ │ │ │ ├── notify.scss
│ │ │ │ ├── offsidebar.scss
│ │ │ │ ├── panels.scss
│ │ │ │ ├── placeholder.scss
│ │ │ │ ├── plans.scss
│ │ │ │ ├── plugins.scss
│ │ │ │ ├── portlets.scss
│ │ │ │ ├── print.scss
│ │ │ │ ├── progress-extra.scss
│ │ │ │ ├── radial-bar.scss
│ │ │ │ ├── row-extra.scss
│ │ │ │ ├── settings.scss
│ │ │ │ ├── sidebar.scss
│ │ │ │ ├── slim-scroll.scss
│ │ │ │ ├── spinner.scss
│ │ │ │ ├── table-extras.scss
│ │ │ │ ├── table-grid.scss
│ │ │ │ ├── timeline.scss
│ │ │ │ ├── todo.scss
│ │ │ │ ├── top-navbar.scss
│ │ │ │ ├── typo.scss
│ │ │ │ ├── user-block.scss
│ │ │ │ ├── utils-definitions.scss
│ │ │ │ ├── utils.scss
│ │ │ │ ├── variables.scss
│ │ │ │ ├── vector-map.scss
│ │ │ │ ├── weather-icons.scss
│ │ │ │ └── widget.scss
│ │ │ ├── app.scss
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _badges.scss
│ │ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ │ ├── _button-groups.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _carousel.scss
│ │ │ │ │ ├── _close.scss
│ │ │ │ │ ├── _code.scss
│ │ │ │ │ ├── _component-animations.scss
│ │ │ │ │ ├── _dropdowns.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _glyphicons.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _input-groups.scss
│ │ │ │ │ ├── _jumbotron.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _media.scss
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ │ ├── _forms.scss
│ │ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ │ ├── _grid.scss
│ │ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ │ ├── _image.scss
│ │ │ │ │ │ ├── _labels.scss
│ │ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ │ ├── _panels.scss
│ │ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ │ ├── _resize.scss
│ │ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ │ ├── _size.scss
│ │ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _modals.scss
│ │ │ │ │ ├── _navbar.scss
│ │ │ │ │ ├── _navs.scss
│ │ │ │ │ ├── _normalize.scss
│ │ │ │ │ ├── _pager.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _popovers.scss
│ │ │ │ │ ├── _print.scss
│ │ │ │ │ ├── _progress-bars.scss
│ │ │ │ │ ├── _responsive-embed.scss
│ │ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ │ ├── _scaffolding.scss
│ │ │ │ │ ├── _tables.scss
│ │ │ │ │ ├── _theme.scss
│ │ │ │ │ ├── _thumbnails.scss
│ │ │ │ │ ├── _tooltip.scss
│ │ │ │ │ ├── _type.scss
│ │ │ │ │ ├── _utilities.scss
│ │ │ │ │ ├── _variables.scss
│ │ │ │ │ └── _wells.scss
│ │ │ │ ├── _bootstrap-compass.scss
│ │ │ │ ├── _bootstrap-mincer.scss
│ │ │ │ ├── _bootstrap.scss
│ │ │ │ └── _bootstrap-sprockets.scss
│ │ │ ├── bootstrap.scss
│ │ │ └── themes
│ │ │ ├── theme-a.scss
│ │ │ ├── theme-b.scss
│ │ │ ├── theme-c.scss
│ │ │ ├── theme-d.scss
│ │ │ ├── theme-e.scss
│ │ │ ├── theme-f.scss
│ │ │ ├── theme-g.scss
│ │ │ └── theme-h.scss
│ │ └── Vendor.jsx
│ ├── modernizr-config.json
│ ├── package.json
│ ├── package-lock.json
│ ├── rtlcss-loader.js
│ ├── webpack.common.js
│ ├── webpack.dev.js
│ └── webpack.prod.js
└── reactjs-seed
├── app
│ ├── App.jsx
│ ├── components
│ │ ├── Common
│ │ │ ├── constants.js
│ │ │ ├── fullscreen.js
│ │ │ ├── load-themes.js
│ │ │ ├── localize.js
│ │ │ ├── maps-google.js
│ │ │ ├── maps-vector.js
│ │ │ ├── notify.js
│ │ │ ├── panel-tools.js
│ │ │ ├── slimscroll.js
│ │ │ ├── sparkline.js
│ │ │ ├── toggle-state.js
│ │ │ ├── trigger-resize.js
│ │ │ └── utils.js
│ │ ├── Layout
│ │ │ ├── BaseHorizontal.jsx
│ │ │ ├── Base.jsx
│ │ │ ├── BasePage.jsx
│ │ │ ├── ContentWrapper.jsx
│ │ │ ├── Footer.jsx
│ │ │ ├── HeaderHorizontal.jsx
│ │ │ ├── Header.jsx
│ │ │ ├── Header.run.js
│ │ │ ├── Offsidebar.jsx
│ │ │ ├── Offsidebar.run.js
│ │ │ ├── Sidebar.jsx
│ │ │ └── Sidebar.run.js
│ │ ├── SingleView
│ │ │ └── SingleView.jsx
│ │ └── SubMenu
│ │ └── SubMenu.jsx
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ ├── fontawesome-webfont.woff2
│ │ ├── Simple-Line-Icons.eot
│ │ ├── Simple-Line-Icons.svg
│ │ ├── Simple-Line-Icons.ttf
│ │ ├── Simple-Line-Icons.woff
│ │ └── Simple-Line-Icons.woff2
│ ├── img
│ │ ├── bg10.jpg
│ │ ├── bg1.jpg
│ │ ├── bg2.jpg
│ │ ├── bg3.jpg
│ │ ├── bg4.jpg
│ │ ├── bg5.jpg
│ │ ├── bg6.jpg
│ │ ├── bg7.jpg
│ │ ├── bg8.jpg
│ │ ├── bg9.jpg
│ │ ├── dummy.png
│ │ ├── lock-bg.jpg
│ │ ├── logo.png
│ │ ├── logo-single.png
│ │ ├── mb-sample.jpg
│ │ ├── mockup.png
│ │ ├── profile-bg.jpg
│ │ └── user
│ │ ├── 01.jpg
│ │ ├── 02.jpg
│ │ ├── 03.jpg
│ │ ├── 04.jpg
│ │ ├── 05.jpg
│ │ ├── 06.jpg
│ │ ├── 07.jpg
│ │ ├── 08.jpg
│ │ ├── 09.jpg
│ │ ├── 10.jpg
│ │ ├── 11.jpg
│ │ ├── 12.jpg
│ │ └── 13.jpg
│ ├── index.html
│ ├── modernizr.js
│ ├── Routes.jsx
│ ├── server
│ │ └── i18n
│ │ ├── site-en.json
│ │ └── site-es.json
│ ├── styles
│ │ ├── app
│ │ │ ├── animate.scss
│ │ │ ├── bootstrap-reset.scss
│ │ │ ├── breadcrumbs.scss
│ │ │ ├── dropdown-extra.scss
│ │ │ ├── layout-animation.scss
│ │ │ ├── layout-extra.scss
│ │ │ ├── layout.scss
│ │ │ ├── media-queries.scss
│ │ │ ├── offsidebar.scss
│ │ │ ├── print.scss
│ │ │ ├── sidebar.scss
│ │ │ ├── top-navbar.scss
│ │ │ ├── typo.scss
│ │ │ ├── user-block.scss
│ │ │ ├── utils-definitions.scss
│ │ │ ├── utils.scss
│ │ │ └── variables.scss
│ │ ├── app.scss
│ │ ├── bootstrap
│ │ │ ├── bootstrap
│ │ │ │ ├── _alerts.scss
│ │ │ │ ├── _badges.scss
│ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ ├── _button-groups.scss
│ │ │ │ ├── _buttons.scss
│ │ │ │ ├── _carousel.scss
│ │ │ │ ├── _close.scss
│ │ │ │ ├── _code.scss
│ │ │ │ ├── _component-animations.scss
│ │ │ │ ├── _dropdowns.scss
│ │ │ │ ├── _forms.scss
│ │ │ │ ├── _glyphicons.scss
│ │ │ │ ├── _grid.scss
│ │ │ │ ├── _input-groups.scss
│ │ │ │ ├── _jumbotron.scss
│ │ │ │ ├── _labels.scss
│ │ │ │ ├── _list-group.scss
│ │ │ │ ├── _media.scss
│ │ │ │ ├── mixins
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ ├── _buttons.scss
│ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ ├── _forms.scss
│ │ │ │ │ ├── _gradients.scss
│ │ │ │ │ ├── _grid-framework.scss
│ │ │ │ │ ├── _grid.scss
│ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ ├── _image.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ ├── _resize.scss
│ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ ├── _size.scss
│ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ └── _vendor-prefixes.scss
│ │ │ │ ├── _mixins.scss
│ │ │ │ ├── _modals.scss
│ │ │ │ ├── _navbar.scss
│ │ │ │ ├── _navs.scss
│ │ │ │ ├── _normalize.scss
│ │ │ │ ├── _pager.scss
│ │ │ │ ├── _pagination.scss
│ │ │ │ ├── _panels.scss
│ │ │ │ ├── _popovers.scss
│ │ │ │ ├── _print.scss
│ │ │ │ ├── _progress-bars.scss
│ │ │ │ ├── _responsive-embed.scss
│ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ ├── _scaffolding.scss
│ │ │ │ ├── _tables.scss
│ │ │ │ ├── _theme.scss
│ │ │ │ ├── _thumbnails.scss
│ │ │ │ ├── _tooltip.scss
│ │ │ │ ├── _type.scss
│ │ │ │ ├── _utilities.scss
│ │ │ │ ├── _variables.scss
│ │ │ │ └── _wells.scss
│ │ │ ├── _bootstrap-compass.scss
│ │ │ ├── _bootstrap-mincer.scss
│ │ │ ├── _bootstrap.scss
│ │ │ └── _bootstrap-sprockets.scss
│ │ ├── bootstrap.scss
│ │ └── themes
│ │ ├── theme-a.scss
│ │ ├── theme-b.scss
│ │ ├── theme-c.scss
│ │ ├── theme-d.scss
│ │ ├── theme-e.scss
│ │ ├── theme-f.scss
│ │ ├── theme-g.scss
│ │ └── theme-h.scss
│ └── Vendor.jsx
├── modernizr-config.json
├── package.json
├── package-lock.json
├── rtlcss-loader.js
├── webpack.common.js
├── webpack.dev.js
└── webpack.prod.js
4343 directories, 14962 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论