├── .gitignore ├── Gulpfile.js ├── LICENSE ├── README.md ├── app.js ├── assets ├── dist │ ├── css │ │ ├── animations.css │ │ ├── bootstrap-progress-bars.css │ │ ├── cards.css │ │ ├── loading-bar.css │ │ ├── loading-dots.css │ │ ├── movies.css │ │ └── tv.css │ ├── img │ │ ├── avatar.png │ │ ├── favicon.ico │ │ └── weather-icons │ │ │ ├── clear-day.png │ │ │ ├── clear-night.png │ │ │ ├── fog.png │ │ │ ├── partly-cloudy-day.png │ │ │ ├── partly-cloudy-night.png │ │ │ ├── rain.png │ │ │ ├── sleet.png │ │ │ ├── snow.png │ │ │ └── wind.png │ ├── js │ │ ├── controllers │ │ │ ├── app.module.js │ │ │ ├── loading.js │ │ │ ├── movies.js │ │ │ ├── storage.js │ │ │ └── tv.js │ │ ├── custom.js │ │ └── directives │ │ │ └── qtip2.js │ ├── materialize │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ ├── materialize.css │ │ │ └── materialize.min.css │ │ ├── font │ │ │ ├── material-design-icons │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Material-Design-Icons.eot │ │ │ │ ├── Material-Design-Icons.svg │ │ │ │ ├── Material-Design-Icons.ttf │ │ │ │ ├── Material-Design-Icons.woff │ │ │ │ └── Material-Design-Icons.woff2 │ │ │ └── roboto │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-Bold.woff │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── Roboto-Light.woff │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ ├── Roboto-Regular.woff2 │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ ├── Roboto-Thin.woff │ │ │ │ └── Roboto-Thin.woff2 │ │ └── js │ │ │ ├── materialize.js │ │ │ └── materialize.min.js │ └── qtip2 │ │ ├── imagesloaded.pkg.min.js │ │ ├── jquery.qtip.min.css │ │ └── jquery.qtip.min.js └── src │ ├── css │ ├── animations.css │ ├── bootstrap-progress-bars.css │ ├── cards.css │ ├── loading-bar.css │ ├── loading-dots.css │ ├── movies.css │ └── tv.css │ ├── img │ ├── .npmignore │ ├── avatar.png │ ├── favicon.ico │ └── weather-icons │ │ ├── clear-day.png │ │ ├── clear-night.png │ │ ├── fog.png │ │ ├── partly-cloudy-day.png │ │ ├── partly-cloudy-night.png │ │ ├── rain.png │ │ ├── sleet.png │ │ ├── snow.png │ │ └── wind.png │ └── js │ ├── controllers │ ├── app.module.js │ ├── loading.js │ ├── movies.js │ ├── storage.js │ └── tv.js │ ├── custom.js │ └── directives │ └── qtip2.js ├── new.config.json ├── package.json ├── routes ├── index.js ├── movies.js ├── services.js ├── storage.js └── tv.js └── views ├── css.pug ├── index.pug ├── js.pug ├── loading.pug └── sections ├── movies.pug ├── storage.pug └── tv.pug /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/Gulpfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/app.js -------------------------------------------------------------------------------- /assets/dist/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/css/animations.css -------------------------------------------------------------------------------- /assets/dist/css/bootstrap-progress-bars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/css/bootstrap-progress-bars.css -------------------------------------------------------------------------------- /assets/dist/css/cards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/css/cards.css -------------------------------------------------------------------------------- /assets/dist/css/loading-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/css/loading-bar.css -------------------------------------------------------------------------------- /assets/dist/css/loading-dots.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/css/loading-dots.css -------------------------------------------------------------------------------- /assets/dist/css/movies.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/css/movies.css -------------------------------------------------------------------------------- /assets/dist/css/tv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/css/tv.css -------------------------------------------------------------------------------- /assets/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/img/avatar.png -------------------------------------------------------------------------------- /assets/dist/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/img/favicon.ico -------------------------------------------------------------------------------- /assets/dist/img/weather-icons/clear-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/img/weather-icons/clear-day.png -------------------------------------------------------------------------------- /assets/dist/img/weather-icons/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/img/weather-icons/clear-night.png -------------------------------------------------------------------------------- /assets/dist/img/weather-icons/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/img/weather-icons/fog.png -------------------------------------------------------------------------------- /assets/dist/img/weather-icons/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/img/weather-icons/partly-cloudy-day.png -------------------------------------------------------------------------------- /assets/dist/img/weather-icons/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/img/weather-icons/partly-cloudy-night.png -------------------------------------------------------------------------------- /assets/dist/img/weather-icons/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/img/weather-icons/rain.png -------------------------------------------------------------------------------- /assets/dist/img/weather-icons/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/img/weather-icons/sleet.png -------------------------------------------------------------------------------- /assets/dist/img/weather-icons/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/img/weather-icons/snow.png -------------------------------------------------------------------------------- /assets/dist/img/weather-icons/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/img/weather-icons/wind.png -------------------------------------------------------------------------------- /assets/dist/js/controllers/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/js/controllers/app.module.js -------------------------------------------------------------------------------- /assets/dist/js/controllers/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/js/controllers/loading.js -------------------------------------------------------------------------------- /assets/dist/js/controllers/movies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/js/controllers/movies.js -------------------------------------------------------------------------------- /assets/dist/js/controllers/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/js/controllers/storage.js -------------------------------------------------------------------------------- /assets/dist/js/controllers/tv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/js/controllers/tv.js -------------------------------------------------------------------------------- /assets/dist/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/js/custom.js -------------------------------------------------------------------------------- /assets/dist/js/directives/qtip2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/js/directives/qtip2.js -------------------------------------------------------------------------------- /assets/dist/materialize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/LICENSE -------------------------------------------------------------------------------- /assets/dist/materialize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/README.md -------------------------------------------------------------------------------- /assets/dist/materialize/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/css/materialize.css -------------------------------------------------------------------------------- /assets/dist/materialize/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/css/materialize.min.css -------------------------------------------------------------------------------- /assets/dist/materialize/font/material-design-icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/material-design-icons/LICENSE.txt -------------------------------------------------------------------------------- /assets/dist/materialize/font/material-design-icons/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/material-design-icons/Material-Design-Icons.eot -------------------------------------------------------------------------------- /assets/dist/materialize/font/material-design-icons/Material-Design-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/material-design-icons/Material-Design-Icons.svg -------------------------------------------------------------------------------- /assets/dist/materialize/font/material-design-icons/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/material-design-icons/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /assets/dist/materialize/font/material-design-icons/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/material-design-icons/Material-Design-Icons.woff -------------------------------------------------------------------------------- /assets/dist/materialize/font/material-design-icons/Material-Design-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/material-design-icons/Material-Design-Icons.woff2 -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /assets/dist/materialize/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /assets/dist/materialize/js/materialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/js/materialize.js -------------------------------------------------------------------------------- /assets/dist/materialize/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/materialize/js/materialize.min.js -------------------------------------------------------------------------------- /assets/dist/qtip2/imagesloaded.pkg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/qtip2/imagesloaded.pkg.min.js -------------------------------------------------------------------------------- /assets/dist/qtip2/jquery.qtip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/qtip2/jquery.qtip.min.css -------------------------------------------------------------------------------- /assets/dist/qtip2/jquery.qtip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/dist/qtip2/jquery.qtip.min.js -------------------------------------------------------------------------------- /assets/src/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/css/animations.css -------------------------------------------------------------------------------- /assets/src/css/bootstrap-progress-bars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/css/bootstrap-progress-bars.css -------------------------------------------------------------------------------- /assets/src/css/cards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/css/cards.css -------------------------------------------------------------------------------- /assets/src/css/loading-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/css/loading-bar.css -------------------------------------------------------------------------------- /assets/src/css/loading-dots.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/css/loading-dots.css -------------------------------------------------------------------------------- /assets/src/css/movies.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/css/movies.css -------------------------------------------------------------------------------- /assets/src/css/tv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/css/tv.css -------------------------------------------------------------------------------- /assets/src/img/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/src/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/img/avatar.png -------------------------------------------------------------------------------- /assets/src/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/img/favicon.ico -------------------------------------------------------------------------------- /assets/src/img/weather-icons/clear-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/img/weather-icons/clear-day.png -------------------------------------------------------------------------------- /assets/src/img/weather-icons/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/img/weather-icons/clear-night.png -------------------------------------------------------------------------------- /assets/src/img/weather-icons/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/img/weather-icons/fog.png -------------------------------------------------------------------------------- /assets/src/img/weather-icons/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/img/weather-icons/partly-cloudy-day.png -------------------------------------------------------------------------------- /assets/src/img/weather-icons/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/img/weather-icons/partly-cloudy-night.png -------------------------------------------------------------------------------- /assets/src/img/weather-icons/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/img/weather-icons/rain.png -------------------------------------------------------------------------------- /assets/src/img/weather-icons/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/img/weather-icons/sleet.png -------------------------------------------------------------------------------- /assets/src/img/weather-icons/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/img/weather-icons/snow.png -------------------------------------------------------------------------------- /assets/src/img/weather-icons/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/img/weather-icons/wind.png -------------------------------------------------------------------------------- /assets/src/js/controllers/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/js/controllers/app.module.js -------------------------------------------------------------------------------- /assets/src/js/controllers/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/js/controllers/loading.js -------------------------------------------------------------------------------- /assets/src/js/controllers/movies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/js/controllers/movies.js -------------------------------------------------------------------------------- /assets/src/js/controllers/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/js/controllers/storage.js -------------------------------------------------------------------------------- /assets/src/js/controllers/tv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/js/controllers/tv.js -------------------------------------------------------------------------------- /assets/src/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/js/custom.js -------------------------------------------------------------------------------- /assets/src/js/directives/qtip2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/assets/src/js/directives/qtip2.js -------------------------------------------------------------------------------- /new.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/new.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/package.json -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/movies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/routes/movies.js -------------------------------------------------------------------------------- /routes/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/routes/services.js -------------------------------------------------------------------------------- /routes/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/routes/storage.js -------------------------------------------------------------------------------- /routes/tv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/routes/tv.js -------------------------------------------------------------------------------- /views/css.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/views/css.pug -------------------------------------------------------------------------------- /views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/views/index.pug -------------------------------------------------------------------------------- /views/js.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/views/js.pug -------------------------------------------------------------------------------- /views/loading.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/views/loading.pug -------------------------------------------------------------------------------- /views/sections/movies.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/views/sections/movies.pug -------------------------------------------------------------------------------- /views/sections/storage.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/views/sections/storage.pug -------------------------------------------------------------------------------- /views/sections/tv.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvinbui/Material-Usenet-Dashboard/HEAD/views/sections/tv.pug --------------------------------------------------------------------------------