├── .gitignore ├── .idea ├── codeStyles │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── one-html5-template.iml └── vcs.xml ├── README.md ├── changelog.md ├── dist ├── charts.html ├── css │ ├── application.min.css │ └── maps │ │ └── application.min.css.map ├── fonts │ ├── flaticon │ │ ├── Flaticon.eot │ │ ├── Flaticon.svg │ │ ├── Flaticon.ttf │ │ ├── Flaticon.woff │ │ └── _flaticon.scss │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── icons.html ├── img │ ├── avatars │ │ ├── a7.png │ │ ├── tn1.png │ │ ├── tn2.png │ │ ├── tn3.png │ │ ├── tn4.png │ │ └── tn5.png │ ├── favicon.png │ ├── icons │ │ ├── charts_filled.svg │ │ ├── charts_outlined.svg │ │ ├── core_filled.svg │ │ ├── core_outlined.svg │ │ ├── dashboard_filled.svg │ │ ├── dashboard_outlined.svg │ │ ├── documentation_filled.svg │ │ ├── documentation_outlined.svg │ │ ├── dots.svg │ │ ├── e-commerce_filled.svg │ │ ├── e-commerce_outlined.svg │ │ ├── e-mail.svg │ │ ├── email_filled.svg │ │ ├── email_nav_filled.svg │ │ ├── email_nav_outlined.svg │ │ ├── email_outlined.svg │ │ ├── extra_filled.svg │ │ ├── extra_outlined.svg │ │ ├── facebook.svg │ │ ├── forms_filled.svg │ │ ├── forms_outlined.svg │ │ ├── github.svg │ │ ├── googleplus.svg │ │ ├── grid_filled.svg │ │ ├── grid_outlined.svg │ │ ├── light-notify.svg │ │ ├── linkedin.svg │ │ ├── logout_filled.svg │ │ ├── logout_outlined.svg │ │ ├── maps_filled.svg │ │ ├── maps_outlined.svg │ │ ├── messages-filled.svg │ │ ├── notification_filled.svg │ │ ├── notification_outlined.svg │ │ ├── orders.svg │ │ ├── package_filled.svg │ │ ├── package_outlined.svg │ │ ├── profile_filled.svg │ │ ├── profile_outlined.svg │ │ ├── search.svg │ │ ├── settings_filled.svg │ │ ├── settings_outlined.svg │ │ ├── smileImg.svg │ │ ├── stocks.svg │ │ ├── stocksDown.svg │ │ ├── tables_filled.svg │ │ ├── tables_outlined.svg │ │ ├── total-sale.svg │ │ ├── typography_filled.svg │ │ ├── typography_outlined.svg │ │ ├── ui_elements_filled.svg │ │ ├── ui_elements_outlined.svg │ │ └── usersImg.svg │ ├── logo.svg │ ├── pictures │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ └── 5.jpg │ ├── search.png │ ├── signin.svg │ └── signup.svg ├── index.html ├── js │ ├── app.js │ ├── charts │ │ └── charts.js │ ├── components │ │ └── ui-notifications.js │ ├── core │ │ └── core-typography.js │ ├── dashboard │ │ └── index.js │ ├── maps │ │ └── gmap.js │ ├── settings.js │ └── tables │ │ └── tables-basic.js ├── login.html ├── maps_google.html ├── notifications.html ├── register.html ├── tables.html └── typography.html ├── gulpfile.js ├── package.json ├── src ├── fonts │ ├── flaticon │ │ ├── Flaticon.eot │ │ ├── Flaticon.svg │ │ ├── Flaticon.ttf │ │ ├── Flaticon.woff │ │ └── _flaticon.scss │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── helpers │ └── index.js ├── img │ ├── avatars │ │ ├── a7.png │ │ ├── tn1.png │ │ ├── tn2.png │ │ ├── tn3.png │ │ ├── tn4.png │ │ └── tn5.png │ ├── favicon.png │ ├── icons │ │ ├── charts_filled.svg │ │ ├── charts_outlined.svg │ │ ├── core_filled.svg │ │ ├── core_outlined.svg │ │ ├── dashboard_filled.svg │ │ ├── dashboard_outlined.svg │ │ ├── documentation_filled.svg │ │ ├── documentation_outlined.svg │ │ ├── dots.svg │ │ ├── e-commerce_filled.svg │ │ ├── e-commerce_outlined.svg │ │ ├── e-mail.svg │ │ ├── email_filled.svg │ │ ├── email_nav_filled.svg │ │ ├── email_nav_outlined.svg │ │ ├── email_outlined.svg │ │ ├── extra_filled.svg │ │ ├── extra_outlined.svg │ │ ├── facebook.svg │ │ ├── forms_filled.svg │ │ ├── forms_outlined.svg │ │ ├── github.svg │ │ ├── googleplus.svg │ │ ├── grid_filled.svg │ │ ├── grid_outlined.svg │ │ ├── light-notify.svg │ │ ├── linkedin.svg │ │ ├── logout_filled.svg │ │ ├── logout_outlined.svg │ │ ├── maps_filled.svg │ │ ├── maps_outlined.svg │ │ ├── messages-filled.svg │ │ ├── notification_filled.svg │ │ ├── notification_outlined.svg │ │ ├── orders.svg │ │ ├── package_filled.svg │ │ ├── package_outlined.svg │ │ ├── profile_filled.svg │ │ ├── profile_outlined.svg │ │ ├── search.svg │ │ ├── settings_filled.svg │ │ ├── settings_outlined.svg │ │ ├── smileImg.svg │ │ ├── stocks.svg │ │ ├── stocksDown.svg │ │ ├── tables_filled.svg │ │ ├── tables_outlined.svg │ │ ├── total-sale.svg │ │ ├── typography_filled.svg │ │ ├── typography_outlined.svg │ │ ├── ui_elements_filled.svg │ │ ├── ui_elements_outlined.svg │ │ └── usersImg.svg │ ├── logo.svg │ ├── pictures │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ └── 5.jpg │ ├── search.png │ ├── signin.svg │ └── signup.svg ├── js │ ├── app.js │ ├── charts │ │ └── charts.js │ ├── components │ │ └── ui-notifications.js │ ├── core │ │ └── core-typography.js │ ├── dashboard │ │ └── index.js │ ├── maps │ │ └── gmap.js │ ├── settings.js │ └── tables │ │ └── tables-basic.js ├── pages │ ├── charts.hbs │ ├── icons.hbs │ ├── index.hbs │ ├── login.hbs │ ├── maps_google.hbs │ ├── notifications.hbs │ ├── register.hbs │ ├── tables.hbs │ └── typography.hbs ├── partials │ ├── layout.hbs │ ├── navbar.hbs │ └── sidebar.hbs └── sass │ ├── _base.scss │ ├── _bootstrap-override.scss │ ├── _custom-libs-override.scss │ ├── _font.scss │ ├── _general.scss │ ├── _global-transitions.scss │ ├── _libs-override.scss │ ├── _mixins.scss │ ├── _print.scss │ ├── _utils.scss │ ├── _variables.scss │ ├── _widgets.scss │ └── application.scss └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/one-html5-template.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/.idea/one-html5-template.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/changelog.md -------------------------------------------------------------------------------- /dist/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/charts.html -------------------------------------------------------------------------------- /dist/css/application.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/css/application.min.css -------------------------------------------------------------------------------- /dist/css/maps/application.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/css/maps/application.min.css.map -------------------------------------------------------------------------------- /dist/fonts/flaticon/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/fonts/flaticon/Flaticon.eot -------------------------------------------------------------------------------- /dist/fonts/flaticon/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/fonts/flaticon/Flaticon.svg -------------------------------------------------------------------------------- /dist/fonts/flaticon/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/fonts/flaticon/Flaticon.ttf -------------------------------------------------------------------------------- /dist/fonts/flaticon/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/fonts/flaticon/Flaticon.woff -------------------------------------------------------------------------------- /dist/fonts/flaticon/_flaticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/fonts/flaticon/_flaticon.scss -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /dist/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/icons.html -------------------------------------------------------------------------------- /dist/img/avatars/a7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/avatars/a7.png -------------------------------------------------------------------------------- /dist/img/avatars/tn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/avatars/tn1.png -------------------------------------------------------------------------------- /dist/img/avatars/tn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/avatars/tn2.png -------------------------------------------------------------------------------- /dist/img/avatars/tn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/avatars/tn3.png -------------------------------------------------------------------------------- /dist/img/avatars/tn4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/avatars/tn4.png -------------------------------------------------------------------------------- /dist/img/avatars/tn5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/avatars/tn5.png -------------------------------------------------------------------------------- /dist/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/favicon.png -------------------------------------------------------------------------------- /dist/img/icons/charts_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/charts_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/charts_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/charts_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/core_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/core_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/core_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/core_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/dashboard_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/dashboard_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/dashboard_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/dashboard_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/documentation_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/documentation_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/documentation_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/documentation_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/dots.svg -------------------------------------------------------------------------------- /dist/img/icons/e-commerce_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/e-commerce_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/e-commerce_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/e-commerce_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/e-mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/e-mail.svg -------------------------------------------------------------------------------- /dist/img/icons/email_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/email_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/email_nav_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/email_nav_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/email_nav_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/email_nav_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/email_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/email_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/extra_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/extra_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/extra_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/extra_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/facebook.svg -------------------------------------------------------------------------------- /dist/img/icons/forms_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/forms_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/forms_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/forms_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/github.svg -------------------------------------------------------------------------------- /dist/img/icons/googleplus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/googleplus.svg -------------------------------------------------------------------------------- /dist/img/icons/grid_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/grid_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/grid_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/grid_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/light-notify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/light-notify.svg -------------------------------------------------------------------------------- /dist/img/icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/linkedin.svg -------------------------------------------------------------------------------- /dist/img/icons/logout_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/logout_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/logout_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/logout_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/maps_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/maps_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/maps_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/maps_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/messages-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/messages-filled.svg -------------------------------------------------------------------------------- /dist/img/icons/notification_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/notification_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/notification_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/notification_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/orders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/orders.svg -------------------------------------------------------------------------------- /dist/img/icons/package_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/package_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/package_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/package_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/profile_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/profile_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/profile_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/profile_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/search.svg -------------------------------------------------------------------------------- /dist/img/icons/settings_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/settings_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/settings_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/settings_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/smileImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/smileImg.svg -------------------------------------------------------------------------------- /dist/img/icons/stocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/stocks.svg -------------------------------------------------------------------------------- /dist/img/icons/stocksDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/stocksDown.svg -------------------------------------------------------------------------------- /dist/img/icons/tables_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/tables_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/tables_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/tables_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/total-sale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/total-sale.svg -------------------------------------------------------------------------------- /dist/img/icons/typography_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/typography_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/typography_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/typography_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/ui_elements_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/ui_elements_filled.svg -------------------------------------------------------------------------------- /dist/img/icons/ui_elements_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/ui_elements_outlined.svg -------------------------------------------------------------------------------- /dist/img/icons/usersImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/icons/usersImg.svg -------------------------------------------------------------------------------- /dist/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/logo.svg -------------------------------------------------------------------------------- /dist/img/pictures/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/pictures/1.jpg -------------------------------------------------------------------------------- /dist/img/pictures/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/pictures/2.jpg -------------------------------------------------------------------------------- /dist/img/pictures/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/pictures/3.jpg -------------------------------------------------------------------------------- /dist/img/pictures/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/pictures/4.jpg -------------------------------------------------------------------------------- /dist/img/pictures/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/pictures/5.jpg -------------------------------------------------------------------------------- /dist/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/search.png -------------------------------------------------------------------------------- /dist/img/signin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/signin.svg -------------------------------------------------------------------------------- /dist/img/signup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/img/signup.svg -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/js/app.js -------------------------------------------------------------------------------- /dist/js/charts/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/js/charts/charts.js -------------------------------------------------------------------------------- /dist/js/components/ui-notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/js/components/ui-notifications.js -------------------------------------------------------------------------------- /dist/js/core/core-typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/js/core/core-typography.js -------------------------------------------------------------------------------- /dist/js/dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/js/dashboard/index.js -------------------------------------------------------------------------------- /dist/js/maps/gmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/js/maps/gmap.js -------------------------------------------------------------------------------- /dist/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/js/settings.js -------------------------------------------------------------------------------- /dist/js/tables/tables-basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/js/tables/tables-basic.js -------------------------------------------------------------------------------- /dist/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/login.html -------------------------------------------------------------------------------- /dist/maps_google.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/maps_google.html -------------------------------------------------------------------------------- /dist/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/notifications.html -------------------------------------------------------------------------------- /dist/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/register.html -------------------------------------------------------------------------------- /dist/tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/tables.html -------------------------------------------------------------------------------- /dist/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/dist/typography.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/package.json -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/fonts/flaticon/Flaticon.eot -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/fonts/flaticon/Flaticon.svg -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/fonts/flaticon/Flaticon.ttf -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/fonts/flaticon/Flaticon.woff -------------------------------------------------------------------------------- /src/fonts/flaticon/_flaticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/fonts/flaticon/_flaticon.scss -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/helpers/index.js -------------------------------------------------------------------------------- /src/img/avatars/a7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/avatars/a7.png -------------------------------------------------------------------------------- /src/img/avatars/tn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/avatars/tn1.png -------------------------------------------------------------------------------- /src/img/avatars/tn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/avatars/tn2.png -------------------------------------------------------------------------------- /src/img/avatars/tn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/avatars/tn3.png -------------------------------------------------------------------------------- /src/img/avatars/tn4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/avatars/tn4.png -------------------------------------------------------------------------------- /src/img/avatars/tn5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/avatars/tn5.png -------------------------------------------------------------------------------- /src/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/favicon.png -------------------------------------------------------------------------------- /src/img/icons/charts_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/charts_filled.svg -------------------------------------------------------------------------------- /src/img/icons/charts_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/charts_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/core_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/core_filled.svg -------------------------------------------------------------------------------- /src/img/icons/core_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/core_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/dashboard_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/dashboard_filled.svg -------------------------------------------------------------------------------- /src/img/icons/dashboard_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/dashboard_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/documentation_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/documentation_filled.svg -------------------------------------------------------------------------------- /src/img/icons/documentation_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/documentation_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/dots.svg -------------------------------------------------------------------------------- /src/img/icons/e-commerce_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/e-commerce_filled.svg -------------------------------------------------------------------------------- /src/img/icons/e-commerce_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/e-commerce_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/e-mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/e-mail.svg -------------------------------------------------------------------------------- /src/img/icons/email_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/email_filled.svg -------------------------------------------------------------------------------- /src/img/icons/email_nav_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/email_nav_filled.svg -------------------------------------------------------------------------------- /src/img/icons/email_nav_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/email_nav_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/email_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/email_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/extra_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/extra_filled.svg -------------------------------------------------------------------------------- /src/img/icons/extra_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/extra_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/facebook.svg -------------------------------------------------------------------------------- /src/img/icons/forms_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/forms_filled.svg -------------------------------------------------------------------------------- /src/img/icons/forms_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/forms_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/github.svg -------------------------------------------------------------------------------- /src/img/icons/googleplus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/googleplus.svg -------------------------------------------------------------------------------- /src/img/icons/grid_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/grid_filled.svg -------------------------------------------------------------------------------- /src/img/icons/grid_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/grid_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/light-notify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/light-notify.svg -------------------------------------------------------------------------------- /src/img/icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/linkedin.svg -------------------------------------------------------------------------------- /src/img/icons/logout_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/logout_filled.svg -------------------------------------------------------------------------------- /src/img/icons/logout_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/logout_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/maps_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/maps_filled.svg -------------------------------------------------------------------------------- /src/img/icons/maps_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/maps_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/messages-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/messages-filled.svg -------------------------------------------------------------------------------- /src/img/icons/notification_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/notification_filled.svg -------------------------------------------------------------------------------- /src/img/icons/notification_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/notification_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/orders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/orders.svg -------------------------------------------------------------------------------- /src/img/icons/package_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/package_filled.svg -------------------------------------------------------------------------------- /src/img/icons/package_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/package_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/profile_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/profile_filled.svg -------------------------------------------------------------------------------- /src/img/icons/profile_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/profile_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/search.svg -------------------------------------------------------------------------------- /src/img/icons/settings_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/settings_filled.svg -------------------------------------------------------------------------------- /src/img/icons/settings_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/settings_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/smileImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/smileImg.svg -------------------------------------------------------------------------------- /src/img/icons/stocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/stocks.svg -------------------------------------------------------------------------------- /src/img/icons/stocksDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/stocksDown.svg -------------------------------------------------------------------------------- /src/img/icons/tables_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/tables_filled.svg -------------------------------------------------------------------------------- /src/img/icons/tables_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/tables_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/total-sale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/total-sale.svg -------------------------------------------------------------------------------- /src/img/icons/typography_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/typography_filled.svg -------------------------------------------------------------------------------- /src/img/icons/typography_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/typography_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/ui_elements_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/ui_elements_filled.svg -------------------------------------------------------------------------------- /src/img/icons/ui_elements_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/ui_elements_outlined.svg -------------------------------------------------------------------------------- /src/img/icons/usersImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/icons/usersImg.svg -------------------------------------------------------------------------------- /src/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/logo.svg -------------------------------------------------------------------------------- /src/img/pictures/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/pictures/1.jpg -------------------------------------------------------------------------------- /src/img/pictures/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/pictures/2.jpg -------------------------------------------------------------------------------- /src/img/pictures/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/pictures/3.jpg -------------------------------------------------------------------------------- /src/img/pictures/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/pictures/4.jpg -------------------------------------------------------------------------------- /src/img/pictures/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/pictures/5.jpg -------------------------------------------------------------------------------- /src/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/search.png -------------------------------------------------------------------------------- /src/img/signin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/signin.svg -------------------------------------------------------------------------------- /src/img/signup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/img/signup.svg -------------------------------------------------------------------------------- /src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/js/app.js -------------------------------------------------------------------------------- /src/js/charts/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/js/charts/charts.js -------------------------------------------------------------------------------- /src/js/components/ui-notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/js/components/ui-notifications.js -------------------------------------------------------------------------------- /src/js/core/core-typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/js/core/core-typography.js -------------------------------------------------------------------------------- /src/js/dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/js/dashboard/index.js -------------------------------------------------------------------------------- /src/js/maps/gmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/js/maps/gmap.js -------------------------------------------------------------------------------- /src/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/js/settings.js -------------------------------------------------------------------------------- /src/js/tables/tables-basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/js/tables/tables-basic.js -------------------------------------------------------------------------------- /src/pages/charts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/pages/charts.hbs -------------------------------------------------------------------------------- /src/pages/icons.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/pages/icons.hbs -------------------------------------------------------------------------------- /src/pages/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/pages/index.hbs -------------------------------------------------------------------------------- /src/pages/login.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/pages/login.hbs -------------------------------------------------------------------------------- /src/pages/maps_google.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/pages/maps_google.hbs -------------------------------------------------------------------------------- /src/pages/notifications.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/pages/notifications.hbs -------------------------------------------------------------------------------- /src/pages/register.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/pages/register.hbs -------------------------------------------------------------------------------- /src/pages/tables.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/pages/tables.hbs -------------------------------------------------------------------------------- /src/pages/typography.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/pages/typography.hbs -------------------------------------------------------------------------------- /src/partials/layout.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/partials/layout.hbs -------------------------------------------------------------------------------- /src/partials/navbar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/partials/navbar.hbs -------------------------------------------------------------------------------- /src/partials/sidebar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/partials/sidebar.hbs -------------------------------------------------------------------------------- /src/sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/sass/_base.scss -------------------------------------------------------------------------------- /src/sass/_bootstrap-override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/sass/_bootstrap-override.scss -------------------------------------------------------------------------------- /src/sass/_custom-libs-override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/sass/_custom-libs-override.scss -------------------------------------------------------------------------------- /src/sass/_font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/sass/_font.scss -------------------------------------------------------------------------------- /src/sass/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/sass/_general.scss -------------------------------------------------------------------------------- /src/sass/_global-transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/sass/_global-transitions.scss -------------------------------------------------------------------------------- /src/sass/_libs-override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/sass/_libs-override.scss -------------------------------------------------------------------------------- /src/sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/sass/_mixins.scss -------------------------------------------------------------------------------- /src/sass/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/sass/_print.scss -------------------------------------------------------------------------------- /src/sass/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/sass/_utils.scss -------------------------------------------------------------------------------- /src/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/sass/_variables.scss -------------------------------------------------------------------------------- /src/sass/_widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/sass/_widgets.scss -------------------------------------------------------------------------------- /src/sass/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/src/sass/application.scss -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-bootstrap-template/HEAD/yarn.lock --------------------------------------------------------------------------------