├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── 401.html ├── 404.html ├── 500.html ├── assets │ ├── demo │ │ ├── chart-area-demo.js │ │ ├── chart-bar-demo.js │ │ ├── chart-pie-demo.js │ │ └── datatables-demo.js │ └── img │ │ └── error-404-monochrome.svg ├── charts.html ├── css │ └── styles.css ├── index.html ├── js │ ├── datatables-simple-demo.js │ └── scripts.js ├── layout-sidenav-light.html ├── layout-static.html ├── login.html ├── password.html ├── register.html └── tables.html ├── package.json ├── scripts ├── build-assets.js ├── build-pug.js ├── build-scripts.js ├── build-scss.js ├── clean.js ├── render-assets.js ├── render-pug.js ├── render-scripts.js ├── render-scss.js ├── sb-watch.js ├── start-debug.js └── start.js └── src ├── assets ├── demo │ ├── chart-area-demo.js │ ├── chart-bar-demo.js │ ├── chart-pie-demo.js │ └── datatables-demo.js └── img │ └── error-404-monochrome.svg ├── js ├── datatables-simple-demo.js └── scripts.js ├── pug ├── layouts │ ├── authentication.pug │ ├── dashboard.pug │ ├── error.pug │ └── includes │ │ ├── footer.pug │ │ ├── head │ │ ├── css.pug │ │ ├── icons.pug │ │ ├── meta.pug │ │ └── title.pug │ │ ├── navigation │ │ ├── sidenav.pug │ │ └── topnav.pug │ │ └── scripts.pug └── pages │ ├── 401.pug │ ├── 404.pug │ ├── 500.pug │ ├── charts.pug │ ├── includes │ ├── datatable.pug │ └── page-header.pug │ ├── index.pug │ ├── layout-sidenav-light.pug │ ├── layout-static.pug │ ├── login.pug │ ├── password.pug │ ├── register.pug │ └── tables.pug └── scss ├── _global.scss ├── _variables.scss ├── layout ├── _authentication.scss ├── _dashboard-default.scss ├── _dashboard-fixed.scss └── _error.scss ├── navigation ├── _nav.scss ├── _topnav.scss └── sidenav │ ├── _sidenav-dark.scss │ ├── _sidenav-light.scss │ └── _sidenav.scss ├── plugins └── simple-datatables.scss ├── styles.scss └── variables ├── _navigation.scss └── _spacing.scss /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/README.md -------------------------------------------------------------------------------- /dist/401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/401.html -------------------------------------------------------------------------------- /dist/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/404.html -------------------------------------------------------------------------------- /dist/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/500.html -------------------------------------------------------------------------------- /dist/assets/demo/chart-area-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/assets/demo/chart-area-demo.js -------------------------------------------------------------------------------- /dist/assets/demo/chart-bar-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/assets/demo/chart-bar-demo.js -------------------------------------------------------------------------------- /dist/assets/demo/chart-pie-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/assets/demo/chart-pie-demo.js -------------------------------------------------------------------------------- /dist/assets/demo/datatables-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/assets/demo/datatables-demo.js -------------------------------------------------------------------------------- /dist/assets/img/error-404-monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/assets/img/error-404-monochrome.svg -------------------------------------------------------------------------------- /dist/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/charts.html -------------------------------------------------------------------------------- /dist/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/css/styles.css -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/js/datatables-simple-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/js/datatables-simple-demo.js -------------------------------------------------------------------------------- /dist/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/js/scripts.js -------------------------------------------------------------------------------- /dist/layout-sidenav-light.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/layout-sidenav-light.html -------------------------------------------------------------------------------- /dist/layout-static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/layout-static.html -------------------------------------------------------------------------------- /dist/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/login.html -------------------------------------------------------------------------------- /dist/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/password.html -------------------------------------------------------------------------------- /dist/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/register.html -------------------------------------------------------------------------------- /dist/tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/dist/tables.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/scripts/build-assets.js -------------------------------------------------------------------------------- /scripts/build-pug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/scripts/build-pug.js -------------------------------------------------------------------------------- /scripts/build-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/scripts/build-scripts.js -------------------------------------------------------------------------------- /scripts/build-scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/scripts/build-scss.js -------------------------------------------------------------------------------- /scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/scripts/clean.js -------------------------------------------------------------------------------- /scripts/render-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/scripts/render-assets.js -------------------------------------------------------------------------------- /scripts/render-pug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/scripts/render-pug.js -------------------------------------------------------------------------------- /scripts/render-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/scripts/render-scripts.js -------------------------------------------------------------------------------- /scripts/render-scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/scripts/render-scss.js -------------------------------------------------------------------------------- /scripts/sb-watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/scripts/sb-watch.js -------------------------------------------------------------------------------- /scripts/start-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/scripts/start-debug.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/scripts/start.js -------------------------------------------------------------------------------- /src/assets/demo/chart-area-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/assets/demo/chart-area-demo.js -------------------------------------------------------------------------------- /src/assets/demo/chart-bar-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/assets/demo/chart-bar-demo.js -------------------------------------------------------------------------------- /src/assets/demo/chart-pie-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/assets/demo/chart-pie-demo.js -------------------------------------------------------------------------------- /src/assets/demo/datatables-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/assets/demo/datatables-demo.js -------------------------------------------------------------------------------- /src/assets/img/error-404-monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/assets/img/error-404-monochrome.svg -------------------------------------------------------------------------------- /src/js/datatables-simple-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/js/datatables-simple-demo.js -------------------------------------------------------------------------------- /src/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/js/scripts.js -------------------------------------------------------------------------------- /src/pug/layouts/authentication.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/layouts/authentication.pug -------------------------------------------------------------------------------- /src/pug/layouts/dashboard.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/layouts/dashboard.pug -------------------------------------------------------------------------------- /src/pug/layouts/error.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/layouts/error.pug -------------------------------------------------------------------------------- /src/pug/layouts/includes/footer.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/layouts/includes/footer.pug -------------------------------------------------------------------------------- /src/pug/layouts/includes/head/css.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/layouts/includes/head/css.pug -------------------------------------------------------------------------------- /src/pug/layouts/includes/head/icons.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/layouts/includes/head/icons.pug -------------------------------------------------------------------------------- /src/pug/layouts/includes/head/meta.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/layouts/includes/head/meta.pug -------------------------------------------------------------------------------- /src/pug/layouts/includes/head/title.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/layouts/includes/head/title.pug -------------------------------------------------------------------------------- /src/pug/layouts/includes/navigation/sidenav.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/layouts/includes/navigation/sidenav.pug -------------------------------------------------------------------------------- /src/pug/layouts/includes/navigation/topnav.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/layouts/includes/navigation/topnav.pug -------------------------------------------------------------------------------- /src/pug/layouts/includes/scripts.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/layouts/includes/scripts.pug -------------------------------------------------------------------------------- /src/pug/pages/401.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/pages/401.pug -------------------------------------------------------------------------------- /src/pug/pages/404.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/pages/404.pug -------------------------------------------------------------------------------- /src/pug/pages/500.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/pages/500.pug -------------------------------------------------------------------------------- /src/pug/pages/charts.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/pages/charts.pug -------------------------------------------------------------------------------- /src/pug/pages/includes/datatable.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/pages/includes/datatable.pug -------------------------------------------------------------------------------- /src/pug/pages/includes/page-header.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/pages/includes/page-header.pug -------------------------------------------------------------------------------- /src/pug/pages/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/pages/index.pug -------------------------------------------------------------------------------- /src/pug/pages/layout-sidenav-light.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/pages/layout-sidenav-light.pug -------------------------------------------------------------------------------- /src/pug/pages/layout-static.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/pages/layout-static.pug -------------------------------------------------------------------------------- /src/pug/pages/login.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/pages/login.pug -------------------------------------------------------------------------------- /src/pug/pages/password.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/pages/password.pug -------------------------------------------------------------------------------- /src/pug/pages/register.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/pages/register.pug -------------------------------------------------------------------------------- /src/pug/pages/tables.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/pug/pages/tables.pug -------------------------------------------------------------------------------- /src/scss/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/_global.scss -------------------------------------------------------------------------------- /src/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/_variables.scss -------------------------------------------------------------------------------- /src/scss/layout/_authentication.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/layout/_authentication.scss -------------------------------------------------------------------------------- /src/scss/layout/_dashboard-default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/layout/_dashboard-default.scss -------------------------------------------------------------------------------- /src/scss/layout/_dashboard-fixed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/layout/_dashboard-fixed.scss -------------------------------------------------------------------------------- /src/scss/layout/_error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/layout/_error.scss -------------------------------------------------------------------------------- /src/scss/navigation/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/navigation/_nav.scss -------------------------------------------------------------------------------- /src/scss/navigation/_topnav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/navigation/_topnav.scss -------------------------------------------------------------------------------- /src/scss/navigation/sidenav/_sidenav-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/navigation/sidenav/_sidenav-dark.scss -------------------------------------------------------------------------------- /src/scss/navigation/sidenav/_sidenav-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/navigation/sidenav/_sidenav-light.scss -------------------------------------------------------------------------------- /src/scss/navigation/sidenav/_sidenav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/navigation/sidenav/_sidenav.scss -------------------------------------------------------------------------------- /src/scss/plugins/simple-datatables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/plugins/simple-datatables.scss -------------------------------------------------------------------------------- /src/scss/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/styles.scss -------------------------------------------------------------------------------- /src/scss/variables/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/variables/_navigation.scss -------------------------------------------------------------------------------- /src/scss/variables/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartBootstrap/startbootstrap-sb-admin/HEAD/src/scss/variables/_spacing.scss --------------------------------------------------------------------------------