├── docs ├── .nojekyll ├── favicon.ico ├── robots.txt ├── images │ ├── icons │ │ ├── icon-72x72.png │ │ ├── icon-96x96.png │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ └── desktop │ │ │ ├── favicon.ico │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── mstile-150x150.png │ │ │ ├── android-chrome-192x192.png │ │ │ └── android-chrome-512x512.png │ ├── lighthouse-report.png │ ├── total_recall_landscape.jpg │ └── total_recall_portrait.jpg ├── humans.txt ├── browserconfig.xml ├── 404.html ├── offline.html ├── manifest.json ├── index.html ├── index.js ├── sw.js └── js │ └── zuix.min.js ├── source ├── .nojekyll ├── favicon.ico ├── pages │ ├── home │ │ ├── main_cover.html │ │ ├── main_cover.css │ │ ├── title_details.html │ │ ├── main_cover.js │ │ ├── title_details.css │ │ ├── title_details.js │ │ ├── list_top_rated.html │ │ ├── list_comedy.html │ │ └── list_tv_series.html │ ├── search.html │ ├── about.css │ ├── notifications.html │ ├── notifications.css │ ├── search.css │ ├── about.html │ ├── home.html │ ├── home.js │ └── home.css ├── robots.txt ├── images │ ├── icons │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ ├── icon-96x96.png │ │ └── desktop │ │ │ ├── favicon.ico │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── mstile-150x150.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── android-chrome-192x192.png │ │ │ └── android-chrome-512x512.png │ ├── lighthouse-report.png │ ├── total_recall_landscape.jpg │ └── total_recall_portrait.jpg ├── layout │ ├── header.html │ ├── footer.html │ ├── header.css │ └── footer.css ├── humans.txt ├── service-worker.js ├── browserconfig.xml ├── 404.html ├── offline.html ├── index.css ├── manifest.json ├── controllers │ └── movie_db.js ├── index.html ├── index.js ├── sw.js └── js │ ├── zuix-bundler.min.js │ ├── zuix-bundler.min.js.map │ ├── zuix-bundler.js │ └── zuix.min.js ├── .gitignore ├── package.json ├── LICENSE └── README.md /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | /node_modules 3 | -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuixjs/zuix-web-flix/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /source/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuixjs/zuix-web-flix/HEAD/source/favicon.ico -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- 1 | # www.robotstxt.org/ 2 | 3 | # Allow crawling of all content 4 | User-agent: * 5 | Disallow: 6 | -------------------------------------------------------------------------------- /source/pages/home/main_cover.html: -------------------------------------------------------------------------------- 1 |
6 | This web application template is built with zuix.js.
7 |
8 | Source code and documentation available from WebFlix repository.
9 |
This product uses the TMDb API but is not endorsed or certified by TMDb.
29 | 30 |46 | If you like this template give it a star ⭐ on GitHub, 47 | this will make the programmer happy 😄 that will probably continue to improve it 🚀 48 |
49 |50 | Feature requests, critics and comments are also welcome 🌈 in the repository issue tracker 📑 51 |
52 | 53 |