├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── docs.yml │ └── feature_request.yml └── pull_request_template.md ├── .gitignore ├── .htaccess ├── 404.html ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── about.html ├── contact.html ├── contributors.html ├── contributors.json ├── css ├── about.css ├── contact.css ├── contributors.css ├── error.css ├── features.css └── style.css ├── features.html ├── img ├── Man-Reading-a-Book-Vector-Illustration.svg ├── book-reading.png ├── book.png ├── e-book-app-6921052-5662039.png ├── error-book.png ├── file-not-found.gif ├── man-holding-books-in-her-hands-and-listening-and-reading-them-online-5186298-4332949.png ├── moon.png ├── sun.png ├── undraw_mailbox_re_dvds.svg └── woman-reading-book-while-drinking-coffee-5632630-4696294.png ├── index.html └── js ├── contributors.js ├── error.js ├── main.js ├── pagination.js ├── preloader.js └── scrollreveal.min.js /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/.github/ISSUE_TEMPLATE/docs.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | ErrorDocument 404 /404.html -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/404.html -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/README.md -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/about.html -------------------------------------------------------------------------------- /contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/contact.html -------------------------------------------------------------------------------- /contributors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/contributors.html -------------------------------------------------------------------------------- /contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/contributors.json -------------------------------------------------------------------------------- /css/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/css/about.css -------------------------------------------------------------------------------- /css/contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/css/contact.css -------------------------------------------------------------------------------- /css/contributors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/css/contributors.css -------------------------------------------------------------------------------- /css/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/css/error.css -------------------------------------------------------------------------------- /css/features.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/css/features.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/css/style.css -------------------------------------------------------------------------------- /features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/features.html -------------------------------------------------------------------------------- /img/Man-Reading-a-Book-Vector-Illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/img/Man-Reading-a-Book-Vector-Illustration.svg -------------------------------------------------------------------------------- /img/book-reading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/img/book-reading.png -------------------------------------------------------------------------------- /img/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/img/book.png -------------------------------------------------------------------------------- /img/e-book-app-6921052-5662039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/img/e-book-app-6921052-5662039.png -------------------------------------------------------------------------------- /img/error-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/img/error-book.png -------------------------------------------------------------------------------- /img/file-not-found.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/img/file-not-found.gif -------------------------------------------------------------------------------- /img/man-holding-books-in-her-hands-and-listening-and-reading-them-online-5186298-4332949.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/img/man-holding-books-in-her-hands-and-listening-and-reading-them-online-5186298-4332949.png -------------------------------------------------------------------------------- /img/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/img/moon.png -------------------------------------------------------------------------------- /img/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/img/sun.png -------------------------------------------------------------------------------- /img/undraw_mailbox_re_dvds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/img/undraw_mailbox_re_dvds.svg -------------------------------------------------------------------------------- /img/woman-reading-book-while-drinking-coffee-5632630-4696294.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/img/woman-reading-book-while-drinking-coffee-5632630-4696294.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/index.html -------------------------------------------------------------------------------- /js/contributors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/js/contributors.js -------------------------------------------------------------------------------- /js/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/js/error.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/js/main.js -------------------------------------------------------------------------------- /js/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/js/pagination.js -------------------------------------------------------------------------------- /js/preloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/js/preloader.js -------------------------------------------------------------------------------- /js/scrollreveal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasimreja/book-finder/HEAD/js/scrollreveal.min.js --------------------------------------------------------------------------------