├── README.md ├── app.js ├── css └── custom.css ├── img └── responsive.png ├── index.html └── vendor ├── bootstrap-3.3.5 ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js └── js ├── jquery-1.11.3.js ├── jquery.timeago.js └── lodash.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/app.js -------------------------------------------------------------------------------- /css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/css/custom.css -------------------------------------------------------------------------------- /img/responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/img/responsive.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/index.html -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/css/bootstrap-theme.css -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/css/bootstrap.css -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/css/bootstrap.css.map -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/css/bootstrap.min.css -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/js/bootstrap.js -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/js/bootstrap.min.js -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.5/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/bootstrap-3.3.5/js/npm.js -------------------------------------------------------------------------------- /vendor/js/jquery-1.11.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/js/jquery-1.11.3.js -------------------------------------------------------------------------------- /vendor/js/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/js/jquery.timeago.js -------------------------------------------------------------------------------- /vendor/js/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitled-dice/untitled-faucet/HEAD/vendor/js/lodash.js --------------------------------------------------------------------------------