├── LICENSE.md ├── README.md ├── css ├── all.min.css ├── fonts │ ├── bebasneue_bold-webfont.eot │ ├── bebasneue_bold-webfont.svg │ ├── bebasneue_bold-webfont.ttf │ ├── bebasneue_bold-webfont.woff │ ├── bebasneue_bold-webfont.woff2 │ ├── sourcesans.woff2 │ ├── sourcesans2.woff2 │ ├── sourcesans3.woff2 │ ├── sourcesans4.woff2 │ ├── sourcesans5.woff2 │ └── sourcesans6.woff2 ├── normalize.min.css └── src │ ├── app.css │ ├── fonts.css │ └── typography.css ├── img ├── 1.jpg ├── 10.jpg ├── 11.jpg ├── 12.jpg ├── 13.jpg ├── 14.jpg ├── 15.jpg ├── 16.jpg ├── 17.jpg ├── 18.jpg ├── 19.jpg ├── 2.jpg ├── 20.jpg ├── 21.jpg ├── 22.jpg ├── 23.jpg ├── 24.jpg ├── 25.jpg ├── 26.jpg ├── 27.jpg ├── 28.jpg ├── 29.jpg ├── 3.jpg ├── 30.jpg ├── 31.jpg ├── 32.jpg ├── 33.jpg ├── 34.jpg ├── 35.jpg ├── 36.jpg ├── 37.jpg ├── 38.jpg ├── 39.jpg ├── 4.jpg ├── 40.jpg ├── 41.jpg ├── 42.jpg ├── 43.jpg ├── 44.jpg ├── 45.jpg ├── 46.jpg ├── 47.jpg ├── 48.jpg ├── 49.jpg ├── 5.jpg ├── 50.jpg ├── 51.jpg ├── 52.jpg ├── 53.jpg ├── 54.jpg ├── 55.jpg ├── 56.jpg ├── 57.jpg ├── 58.jpg ├── 59.jpg ├── 6.jpg ├── 60.jpg ├── 61.jpg ├── 62.jpg ├── 63.jpg ├── 7.jpg ├── 8.jpg └── 9.jpg ├── index.html ├── js ├── lib │ ├── angular-cookies.min.js │ ├── angular-localization.min.js │ ├── angular-route.min.js │ ├── angular-sanitize.min.js │ ├── angular.min.js │ ├── angularAMD.min.js │ ├── moment-with-locales.min.js │ └── require.js ├── main.js └── scripts │ ├── app.js │ ├── controllers.js │ ├── storage.js │ └── view │ └── dashboard.html ├── languages ├── de-DE │ └── time.lang.json ├── en-US │ └── time.lang.json ├── fi-FI │ └── time.lang.json └── zh-TW │ └── time.lang.json ├── quotes.json └── user.json /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/README.md -------------------------------------------------------------------------------- /css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/all.min.css -------------------------------------------------------------------------------- /css/fonts/bebasneue_bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/fonts/bebasneue_bold-webfont.eot -------------------------------------------------------------------------------- /css/fonts/bebasneue_bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/fonts/bebasneue_bold-webfont.svg -------------------------------------------------------------------------------- /css/fonts/bebasneue_bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/fonts/bebasneue_bold-webfont.ttf -------------------------------------------------------------------------------- /css/fonts/bebasneue_bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/fonts/bebasneue_bold-webfont.woff -------------------------------------------------------------------------------- /css/fonts/bebasneue_bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/fonts/bebasneue_bold-webfont.woff2 -------------------------------------------------------------------------------- /css/fonts/sourcesans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/fonts/sourcesans.woff2 -------------------------------------------------------------------------------- /css/fonts/sourcesans2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/fonts/sourcesans2.woff2 -------------------------------------------------------------------------------- /css/fonts/sourcesans3.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/fonts/sourcesans3.woff2 -------------------------------------------------------------------------------- /css/fonts/sourcesans4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/fonts/sourcesans4.woff2 -------------------------------------------------------------------------------- /css/fonts/sourcesans5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/fonts/sourcesans5.woff2 -------------------------------------------------------------------------------- /css/fonts/sourcesans6.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/fonts/sourcesans6.woff2 -------------------------------------------------------------------------------- /css/normalize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/normalize.min.css -------------------------------------------------------------------------------- /css/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/src/app.css -------------------------------------------------------------------------------- /css/src/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/src/fonts.css -------------------------------------------------------------------------------- /css/src/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/css/src/typography.css -------------------------------------------------------------------------------- /img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/1.jpg -------------------------------------------------------------------------------- /img/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/10.jpg -------------------------------------------------------------------------------- /img/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/11.jpg -------------------------------------------------------------------------------- /img/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/12.jpg -------------------------------------------------------------------------------- /img/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/13.jpg -------------------------------------------------------------------------------- /img/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/14.jpg -------------------------------------------------------------------------------- /img/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/15.jpg -------------------------------------------------------------------------------- /img/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/16.jpg -------------------------------------------------------------------------------- /img/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/17.jpg -------------------------------------------------------------------------------- /img/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/18.jpg -------------------------------------------------------------------------------- /img/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/19.jpg -------------------------------------------------------------------------------- /img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/2.jpg -------------------------------------------------------------------------------- /img/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/20.jpg -------------------------------------------------------------------------------- /img/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/21.jpg -------------------------------------------------------------------------------- /img/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/22.jpg -------------------------------------------------------------------------------- /img/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/23.jpg -------------------------------------------------------------------------------- /img/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/24.jpg -------------------------------------------------------------------------------- /img/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/25.jpg -------------------------------------------------------------------------------- /img/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/26.jpg -------------------------------------------------------------------------------- /img/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/27.jpg -------------------------------------------------------------------------------- /img/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/28.jpg -------------------------------------------------------------------------------- /img/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/29.jpg -------------------------------------------------------------------------------- /img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/3.jpg -------------------------------------------------------------------------------- /img/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/30.jpg -------------------------------------------------------------------------------- /img/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/31.jpg -------------------------------------------------------------------------------- /img/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/32.jpg -------------------------------------------------------------------------------- /img/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/33.jpg -------------------------------------------------------------------------------- /img/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/34.jpg -------------------------------------------------------------------------------- /img/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/35.jpg -------------------------------------------------------------------------------- /img/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/36.jpg -------------------------------------------------------------------------------- /img/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/37.jpg -------------------------------------------------------------------------------- /img/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/38.jpg -------------------------------------------------------------------------------- /img/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/39.jpg -------------------------------------------------------------------------------- /img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/4.jpg -------------------------------------------------------------------------------- /img/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/40.jpg -------------------------------------------------------------------------------- /img/41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/41.jpg -------------------------------------------------------------------------------- /img/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/42.jpg -------------------------------------------------------------------------------- /img/43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/43.jpg -------------------------------------------------------------------------------- /img/44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/44.jpg -------------------------------------------------------------------------------- /img/45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/45.jpg -------------------------------------------------------------------------------- /img/46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/46.jpg -------------------------------------------------------------------------------- /img/47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/47.jpg -------------------------------------------------------------------------------- /img/48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/48.jpg -------------------------------------------------------------------------------- /img/49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/49.jpg -------------------------------------------------------------------------------- /img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/5.jpg -------------------------------------------------------------------------------- /img/50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/50.jpg -------------------------------------------------------------------------------- /img/51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/51.jpg -------------------------------------------------------------------------------- /img/52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/52.jpg -------------------------------------------------------------------------------- /img/53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/53.jpg -------------------------------------------------------------------------------- /img/54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/54.jpg -------------------------------------------------------------------------------- /img/55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/55.jpg -------------------------------------------------------------------------------- /img/56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/56.jpg -------------------------------------------------------------------------------- /img/57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/57.jpg -------------------------------------------------------------------------------- /img/58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/58.jpg -------------------------------------------------------------------------------- /img/59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/59.jpg -------------------------------------------------------------------------------- /img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/6.jpg -------------------------------------------------------------------------------- /img/60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/60.jpg -------------------------------------------------------------------------------- /img/61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/61.jpg -------------------------------------------------------------------------------- /img/62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/62.jpg -------------------------------------------------------------------------------- /img/63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/63.jpg -------------------------------------------------------------------------------- /img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/7.jpg -------------------------------------------------------------------------------- /img/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/8.jpg -------------------------------------------------------------------------------- /img/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/img/9.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/index.html -------------------------------------------------------------------------------- /js/lib/angular-cookies.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/js/lib/angular-cookies.min.js -------------------------------------------------------------------------------- /js/lib/angular-localization.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/js/lib/angular-localization.min.js -------------------------------------------------------------------------------- /js/lib/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/js/lib/angular-route.min.js -------------------------------------------------------------------------------- /js/lib/angular-sanitize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/js/lib/angular-sanitize.min.js -------------------------------------------------------------------------------- /js/lib/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/js/lib/angular.min.js -------------------------------------------------------------------------------- /js/lib/angularAMD.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/js/lib/angularAMD.min.js -------------------------------------------------------------------------------- /js/lib/moment-with-locales.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/js/lib/moment-with-locales.min.js -------------------------------------------------------------------------------- /js/lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/js/lib/require.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/js/main.js -------------------------------------------------------------------------------- /js/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/js/scripts/app.js -------------------------------------------------------------------------------- /js/scripts/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/js/scripts/controllers.js -------------------------------------------------------------------------------- /js/scripts/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/js/scripts/storage.js -------------------------------------------------------------------------------- /js/scripts/view/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/js/scripts/view/dashboard.html -------------------------------------------------------------------------------- /languages/de-DE/time.lang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/languages/de-DE/time.lang.json -------------------------------------------------------------------------------- /languages/en-US/time.lang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/languages/en-US/time.lang.json -------------------------------------------------------------------------------- /languages/fi-FI/time.lang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/languages/fi-FI/time.lang.json -------------------------------------------------------------------------------- /languages/zh-TW/time.lang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/languages/zh-TW/time.lang.json -------------------------------------------------------------------------------- /quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/quotes.json -------------------------------------------------------------------------------- /user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakke-korpelainen/newtab-angular/HEAD/user.json --------------------------------------------------------------------------------