├── .htmlnanorc ├── .sassrc ├── src ├── partials │ ├── pagination.html │ ├── modal-movie.html │ ├── main.html │ ├── modal-team.html │ ├── footer.html │ ├── loader.html │ ├── header-library.html │ ├── library-content.html │ └── header-main.html ├── sass │ ├── base │ │ ├── _module.scss │ │ ├── _container.scss │ │ └── _common.scss │ ├── utils │ │ ├── _module.scss │ │ ├── _mixins.scss │ │ ├── _reset.scss │ │ ├── _visually-hidden.scss │ │ └── _variables.scss │ ├── index.scss │ ├── layout │ │ ├── _module.scss │ │ ├── _main.scss │ │ ├── _footer.scss │ │ ├── _header-library.scss │ │ ├── _library.scss │ │ └── _header-main.scss │ ├── components │ │ ├── _module.scss │ │ ├── _go-top.scss │ │ ├── _backdrop.scss │ │ ├── _logo.scss │ │ ├── _arrows_pagination.scss │ │ ├── _modal-team.scss │ │ ├── _button.scss │ │ ├── _modal-movie.scss │ │ └── _loader.scss │ ├── index.css.map │ └── index.css ├── images │ ├── team │ │ ├── igoor.jpg │ │ ├── igor.jpg │ │ ├── inna2.jpg │ │ ├── katya.jpg │ │ ├── Dmytro.jpg │ │ ├── andrew.jpg │ │ ├── denys2.jpg │ │ ├── julia2.jpg │ │ ├── ruslan2.jpg │ │ ├── vasyl2.jpg │ │ ├── Volodymyr.jpg │ │ ├── vladyslav.jpg │ │ ├── yaroslav.jpg │ │ └── anastasiya_2.jpg │ ├── header-main │ │ ├── test2.jpg │ │ ├── hero-home.jpg │ │ ├── hero-home-2x.jpg │ │ ├── hero-home-mob.jpg │ │ ├── hero-home-tab.jpg │ │ ├── hamster-arrow-up.png │ │ ├── hero-home-mob-2x.jpg │ │ └── hero-home-tab-2x.jpg │ ├── no-photo │ │ └── no-photo.png │ ├── header-library │ │ ├── test1.png │ │ ├── hero-library.jpg │ │ ├── hero-library-2x.jpg │ │ ├── hero-library-mob.jpg │ │ ├── hero-library-tab.jpg │ │ ├── hero-library-mob-2x.jpg │ │ └── hero-library-tab-2x.jpg │ ├── no-watched │ │ ├── no-watched.png │ │ └── no-watched-transformed1.png │ └── svg │ │ ├── arrow-left-1.svg │ │ ├── arrow-right.svg │ │ ├── favicon.ico.svg │ │ ├── arrow-left.svg │ │ └── symbol-defs.svg ├── fonts │ ├── Roboto-Medium.ttf │ ├── Roboto-Medium.woff │ ├── Roboto-Medium.woff2 │ ├── Roboto-Regular.ttf │ ├── Roboto-Regular.woff │ └── Roboto-Regular.woff2 ├── js │ ├── local-storage.js │ ├── refs.js │ ├── loader-spinner.js │ ├── go-top.js │ ├── geners.js │ ├── change-theme.js │ ├── notification.js │ ├── trailer.js │ ├── pagination.js │ ├── api-fetch.js │ ├── search-input.js │ ├── markup-cards.js │ ├── queue-local-storage.js │ ├── watched-local-storage.js │ ├── buttons.js │ ├── modal-movie.js │ └── modal-team.js ├── index.js ├── library-page.html └── index.html ├── assets ├── status.png ├── how-it-works.png ├── repo-settings.png ├── actions-config-step-1.png └── actions-config-step-2.png ├── .posthtmlrc ├── .parcelrc ├── .editorconfig ├── .prettierrc ├── .github └── workflows │ └── deploy.yml ├── package.json ├── .gitignore ├── README.en.md ├── README.md ├── README.uk.md ├── README.pl.md └── README.es.md /.htmlnanorc: -------------------------------------------------------------------------------- 1 | { 2 | "minifySvg": false 3 | } -------------------------------------------------------------------------------- /.sassrc: -------------------------------------------------------------------------------- 1 | { 2 | "includePaths": [ 3 | "node_modules" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/partials/pagination.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /src/sass/base/_module.scss: -------------------------------------------------------------------------------- 1 | @import './common'; 2 | @import './container.scss'; 3 | -------------------------------------------------------------------------------- /assets/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/assets/status.png -------------------------------------------------------------------------------- /.posthtmlrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": { 3 | "posthtml-include": { 4 | "root": "./src" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assets/how-it-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/assets/how-it-works.png -------------------------------------------------------------------------------- /assets/repo-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/assets/repo-settings.png -------------------------------------------------------------------------------- /src/images/team/igoor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/igoor.jpg -------------------------------------------------------------------------------- /src/images/team/igor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/igor.jpg -------------------------------------------------------------------------------- /src/images/team/inna2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/inna2.jpg -------------------------------------------------------------------------------- /src/images/team/katya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/katya.jpg -------------------------------------------------------------------------------- /src/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/images/team/Dmytro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/Dmytro.jpg -------------------------------------------------------------------------------- /src/images/team/andrew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/andrew.jpg -------------------------------------------------------------------------------- /src/images/team/denys2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/denys2.jpg -------------------------------------------------------------------------------- /src/images/team/julia2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/julia2.jpg -------------------------------------------------------------------------------- /src/images/team/ruslan2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/ruslan2.jpg -------------------------------------------------------------------------------- /src/images/team/vasyl2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/vasyl2.jpg -------------------------------------------------------------------------------- /src/fonts/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/fonts/Roboto-Medium.woff -------------------------------------------------------------------------------- /src/fonts/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/fonts/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /src/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/fonts/Roboto-Regular.woff -------------------------------------------------------------------------------- /src/fonts/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/fonts/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /src/images/team/Volodymyr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/Volodymyr.jpg -------------------------------------------------------------------------------- /src/images/team/vladyslav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/vladyslav.jpg -------------------------------------------------------------------------------- /src/images/team/yaroslav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/yaroslav.jpg -------------------------------------------------------------------------------- /assets/actions-config-step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/assets/actions-config-step-1.png -------------------------------------------------------------------------------- /assets/actions-config-step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/assets/actions-config-step-2.png -------------------------------------------------------------------------------- /src/images/header-main/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/header-main/test2.jpg -------------------------------------------------------------------------------- /src/images/no-photo/no-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/no-photo/no-photo.png -------------------------------------------------------------------------------- /src/images/team/anastasiya_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julieshapo/5th-element-filmoteka/HEAD/src/images/team/anastasiya_2.jpg -------------------------------------------------------------------------------- /src/partials/modal-movie.html: -------------------------------------------------------------------------------- 1 |
11 |
45 | 40 | Please, enter your search request. 41 |
42 |43 | Search result not successful. Enter the correct movie name and try again. 44 |
45 |${item.title}
40 |${geners} | ${year}
41 |Vote / Votes
127 |Popularity
130 |Original Title
133 |Genre
136 |141 | 144 | / ${object.vote_count} 145 |
146 |${ 149 | object.popularity.toFixed(1) ?? '-' 150 | }
151 |${object.original_title}
154 |${geners}
157 |162 | ${object.overview ?? '- - -'} 163 |
164 |${item.position}
137 |