├── .idea ├── .gitignore ├── codeStyles │ └── codeStyleConfig.xml ├── modules.xml ├── tempFolder.iml └── vcs.xml ├── .nojekyll ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── changelog.md ├── dist ├── charts.html ├── css │ ├── application.min.css │ └── maps │ │ └── application.min.css.map ├── demo │ ├── ajax │ │ ├── messages.html │ │ ├── notifications.html │ │ ├── notifications.php │ │ └── progress.html │ └── img │ │ ├── people │ │ ├── a1.jpg │ │ ├── a2.jpg │ │ ├── a3.jpg │ │ ├── a4.jpg │ │ ├── a5.jpg │ │ └── a6.jpg │ │ └── pictures │ │ ├── 1.jpg │ │ ├── 11.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ └── 4.jpg ├── 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 │ ├── avatar.png │ └── sing-screenshot.png ├── index.html ├── js │ ├── app.js │ ├── charts.js │ ├── gmap.js │ ├── index.js │ ├── notifications.js │ ├── settings.js │ ├── tables.js │ └── typography.js ├── maps_google.html ├── notifications.html ├── tables.html └── typography.html ├── gulpfile.js ├── package.json ├── src ├── demo │ ├── ajax │ │ ├── messages.html │ │ ├── notifications.html │ │ ├── notifications.php │ │ └── progress.html │ └── img │ │ ├── people │ │ ├── a1.jpg │ │ ├── a2.jpg │ │ ├── a3.jpg │ │ ├── a4.jpg │ │ ├── a5.jpg │ │ └── a6.jpg │ │ └── pictures │ │ ├── 1.jpg │ │ ├── 11.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ └── 4.jpg ├── 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 │ ├── avatar.png │ └── sing-screenshot.png ├── js │ ├── app.js │ ├── charts.js │ ├── gmap.js │ ├── index.js │ ├── notifications.js │ ├── settings.js │ ├── tables.js │ └── typography.js ├── pages │ ├── charts.hbs │ ├── icons.hbs │ ├── index.hbs │ ├── maps_google.hbs │ ├── notifications.hbs │ ├── tables.hbs │ └── typography.hbs ├── partials │ ├── layout.hbs │ ├── navbar.hbs │ ├── sidebar.hbs │ └── theme-helper.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 /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/tempFolder.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/.idea/tempFolder.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/changelog.md -------------------------------------------------------------------------------- /dist/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/charts.html -------------------------------------------------------------------------------- /dist/css/application.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/css/application.min.css -------------------------------------------------------------------------------- /dist/css/maps/application.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/css/maps/application.min.css.map -------------------------------------------------------------------------------- /dist/demo/ajax/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/ajax/messages.html -------------------------------------------------------------------------------- /dist/demo/ajax/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/ajax/notifications.html -------------------------------------------------------------------------------- /dist/demo/ajax/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/ajax/notifications.php -------------------------------------------------------------------------------- /dist/demo/ajax/progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/ajax/progress.html -------------------------------------------------------------------------------- /dist/demo/img/people/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/img/people/a1.jpg -------------------------------------------------------------------------------- /dist/demo/img/people/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/img/people/a2.jpg -------------------------------------------------------------------------------- /dist/demo/img/people/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/img/people/a3.jpg -------------------------------------------------------------------------------- /dist/demo/img/people/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/img/people/a4.jpg -------------------------------------------------------------------------------- /dist/demo/img/people/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/img/people/a5.jpg -------------------------------------------------------------------------------- /dist/demo/img/people/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/img/people/a6.jpg -------------------------------------------------------------------------------- /dist/demo/img/pictures/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/img/pictures/1.jpg -------------------------------------------------------------------------------- /dist/demo/img/pictures/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/img/pictures/11.jpg -------------------------------------------------------------------------------- /dist/demo/img/pictures/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/img/pictures/2.jpg -------------------------------------------------------------------------------- /dist/demo/img/pictures/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/img/pictures/3.jpg -------------------------------------------------------------------------------- /dist/demo/img/pictures/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/demo/img/pictures/4.jpg -------------------------------------------------------------------------------- /dist/fonts/flaticon/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/fonts/flaticon/Flaticon.eot -------------------------------------------------------------------------------- /dist/fonts/flaticon/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/fonts/flaticon/Flaticon.svg -------------------------------------------------------------------------------- /dist/fonts/flaticon/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/fonts/flaticon/Flaticon.ttf -------------------------------------------------------------------------------- /dist/fonts/flaticon/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/fonts/flaticon/Flaticon.woff -------------------------------------------------------------------------------- /dist/fonts/flaticon/_flaticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/fonts/flaticon/_flaticon.scss -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /dist/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/icons.html -------------------------------------------------------------------------------- /dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/img/avatar.png -------------------------------------------------------------------------------- /dist/img/sing-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/img/sing-screenshot.png -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/js/app.js -------------------------------------------------------------------------------- /dist/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/js/charts.js -------------------------------------------------------------------------------- /dist/js/gmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/js/gmap.js -------------------------------------------------------------------------------- /dist/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/js/index.js -------------------------------------------------------------------------------- /dist/js/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/js/notifications.js -------------------------------------------------------------------------------- /dist/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/js/settings.js -------------------------------------------------------------------------------- /dist/js/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/js/tables.js -------------------------------------------------------------------------------- /dist/js/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/js/typography.js -------------------------------------------------------------------------------- /dist/maps_google.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/maps_google.html -------------------------------------------------------------------------------- /dist/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/notifications.html -------------------------------------------------------------------------------- /dist/tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/tables.html -------------------------------------------------------------------------------- /dist/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/dist/typography.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/package.json -------------------------------------------------------------------------------- /src/demo/ajax/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/ajax/messages.html -------------------------------------------------------------------------------- /src/demo/ajax/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/ajax/notifications.html -------------------------------------------------------------------------------- /src/demo/ajax/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/ajax/notifications.php -------------------------------------------------------------------------------- /src/demo/ajax/progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/ajax/progress.html -------------------------------------------------------------------------------- /src/demo/img/people/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/img/people/a1.jpg -------------------------------------------------------------------------------- /src/demo/img/people/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/img/people/a2.jpg -------------------------------------------------------------------------------- /src/demo/img/people/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/img/people/a3.jpg -------------------------------------------------------------------------------- /src/demo/img/people/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/img/people/a4.jpg -------------------------------------------------------------------------------- /src/demo/img/people/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/img/people/a5.jpg -------------------------------------------------------------------------------- /src/demo/img/people/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/img/people/a6.jpg -------------------------------------------------------------------------------- /src/demo/img/pictures/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/img/pictures/1.jpg -------------------------------------------------------------------------------- /src/demo/img/pictures/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/img/pictures/11.jpg -------------------------------------------------------------------------------- /src/demo/img/pictures/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/img/pictures/2.jpg -------------------------------------------------------------------------------- /src/demo/img/pictures/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/img/pictures/3.jpg -------------------------------------------------------------------------------- /src/demo/img/pictures/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/demo/img/pictures/4.jpg -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/fonts/flaticon/Flaticon.eot -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/fonts/flaticon/Flaticon.svg -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/fonts/flaticon/Flaticon.ttf -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/fonts/flaticon/Flaticon.woff -------------------------------------------------------------------------------- /src/fonts/flaticon/_flaticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/fonts/flaticon/_flaticon.scss -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/helpers/index.js -------------------------------------------------------------------------------- /src/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/img/avatar.png -------------------------------------------------------------------------------- /src/img/sing-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/img/sing-screenshot.png -------------------------------------------------------------------------------- /src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/js/app.js -------------------------------------------------------------------------------- /src/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/js/charts.js -------------------------------------------------------------------------------- /src/js/gmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/js/gmap.js -------------------------------------------------------------------------------- /src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/js/index.js -------------------------------------------------------------------------------- /src/js/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/js/notifications.js -------------------------------------------------------------------------------- /src/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/js/settings.js -------------------------------------------------------------------------------- /src/js/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/js/tables.js -------------------------------------------------------------------------------- /src/js/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/js/typography.js -------------------------------------------------------------------------------- /src/pages/charts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/pages/charts.hbs -------------------------------------------------------------------------------- /src/pages/icons.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/pages/icons.hbs -------------------------------------------------------------------------------- /src/pages/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/pages/index.hbs -------------------------------------------------------------------------------- /src/pages/maps_google.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/pages/maps_google.hbs -------------------------------------------------------------------------------- /src/pages/notifications.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/pages/notifications.hbs -------------------------------------------------------------------------------- /src/pages/tables.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/pages/tables.hbs -------------------------------------------------------------------------------- /src/pages/typography.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/pages/typography.hbs -------------------------------------------------------------------------------- /src/partials/layout.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/partials/layout.hbs -------------------------------------------------------------------------------- /src/partials/navbar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/partials/navbar.hbs -------------------------------------------------------------------------------- /src/partials/sidebar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/partials/sidebar.hbs -------------------------------------------------------------------------------- /src/partials/theme-helper.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/partials/theme-helper.hbs -------------------------------------------------------------------------------- /src/sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/sass/_base.scss -------------------------------------------------------------------------------- /src/sass/_bootstrap-override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/sass/_bootstrap-override.scss -------------------------------------------------------------------------------- /src/sass/_custom-libs-override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/sass/_custom-libs-override.scss -------------------------------------------------------------------------------- /src/sass/_font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/sass/_font.scss -------------------------------------------------------------------------------- /src/sass/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/sass/_general.scss -------------------------------------------------------------------------------- /src/sass/_global-transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/sass/_global-transitions.scss -------------------------------------------------------------------------------- /src/sass/_libs-override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/sass/_libs-override.scss -------------------------------------------------------------------------------- /src/sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/sass/_mixins.scss -------------------------------------------------------------------------------- /src/sass/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/sass/_print.scss -------------------------------------------------------------------------------- /src/sass/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/sass/_utils.scss -------------------------------------------------------------------------------- /src/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/sass/_variables.scss -------------------------------------------------------------------------------- /src/sass/_widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/sass/_widgets.scss -------------------------------------------------------------------------------- /src/sass/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/src/sass/application.scss -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app/HEAD/yarn.lock --------------------------------------------------------------------------------