├── .gitignore ├── README.md ├── docs ├── CNAME ├── apple-touch-icon-114x114.png ├── apple-touch-icon-120x120.png ├── apple-touch-icon-144x144.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-57x57.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-72x72.png ├── apple-touch-icon-76x76.png ├── css │ └── app.css ├── favicon-128.png ├── favicon-16x16.png ├── favicon-196x196.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── fonts │ ├── caladea-regular-webfont.eot │ ├── caladea-regular-webfont.svg │ ├── caladea-regular-webfont.ttf │ ├── caladea-regular-webfont.woff │ ├── caladea-regular-webfont.woff2 │ ├── cinzel-bold-webfont.eot │ ├── cinzel-bold-webfont.svg │ ├── cinzel-bold-webfont.ttf │ ├── cinzel-bold-webfont.woff │ └── cinzel-bold-webfont.woff2 ├── img │ ├── flourish.png │ ├── hollow_knight_title_large_white.png │ ├── hollow_knight_title_white.png │ ├── icon-essence.png │ ├── icon-geo.png │ ├── icon-pale-ore.png │ ├── irongrip.png │ └── social-card.png ├── index.html ├── js │ └── app.js ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png └── mstile-70x70.png ├── fonts ├── caladea-regular-webfont.eot ├── caladea-regular-webfont.svg ├── caladea-regular-webfont.ttf ├── caladea-regular-webfont.woff ├── caladea-regular-webfont.woff2 ├── cinzel-bold-webfont.eot ├── cinzel-bold-webfont.svg ├── cinzel-bold-webfont.ttf ├── cinzel-bold-webfont.woff └── cinzel-bold-webfont.woff2 ├── gameData.json ├── gulpfile.js ├── img ├── flourish.png ├── hollow_knight_title_large_white.png ├── hollow_knight_title_white.png ├── icon-essence.png ├── icon-geo.png ├── icon-pale-ore.png ├── irongrip.png └── social-card.png ├── js └── app.js ├── package.json ├── scss ├── app.scss ├── fonts.scss └── normalize.scss ├── sketch ├── favicon.sketch └── social-card.sketch └── twig ├── common_list.twig ├── description_list.twig └── index.twig /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/README.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | hollowknightchecklist.com -------------------------------------------------------------------------------- /docs/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/css/app.css -------------------------------------------------------------------------------- /docs/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/favicon-128.png -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/favicon-196x196.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/favicon-96x96.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fonts/caladea-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/fonts/caladea-regular-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/caladea-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/fonts/caladea-regular-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/caladea-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/fonts/caladea-regular-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/caladea-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/fonts/caladea-regular-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/caladea-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/fonts/caladea-regular-webfont.woff2 -------------------------------------------------------------------------------- /docs/fonts/cinzel-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/fonts/cinzel-bold-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/cinzel-bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/fonts/cinzel-bold-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/cinzel-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/fonts/cinzel-bold-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/cinzel-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/fonts/cinzel-bold-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/cinzel-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/fonts/cinzel-bold-webfont.woff2 -------------------------------------------------------------------------------- /docs/img/flourish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/img/flourish.png -------------------------------------------------------------------------------- /docs/img/hollow_knight_title_large_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/img/hollow_knight_title_large_white.png -------------------------------------------------------------------------------- /docs/img/hollow_knight_title_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/img/hollow_knight_title_white.png -------------------------------------------------------------------------------- /docs/img/icon-essence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/img/icon-essence.png -------------------------------------------------------------------------------- /docs/img/icon-geo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/img/icon-geo.png -------------------------------------------------------------------------------- /docs/img/icon-pale-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/img/icon-pale-ore.png -------------------------------------------------------------------------------- /docs/img/irongrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/img/irongrip.png -------------------------------------------------------------------------------- /docs/img/social-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/img/social-card.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/js/app.js -------------------------------------------------------------------------------- /docs/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/mstile-144x144.png -------------------------------------------------------------------------------- /docs/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/mstile-150x150.png -------------------------------------------------------------------------------- /docs/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/mstile-310x150.png -------------------------------------------------------------------------------- /docs/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/mstile-310x310.png -------------------------------------------------------------------------------- /docs/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/docs/mstile-70x70.png -------------------------------------------------------------------------------- /fonts/caladea-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/fonts/caladea-regular-webfont.eot -------------------------------------------------------------------------------- /fonts/caladea-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/fonts/caladea-regular-webfont.svg -------------------------------------------------------------------------------- /fonts/caladea-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/fonts/caladea-regular-webfont.ttf -------------------------------------------------------------------------------- /fonts/caladea-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/fonts/caladea-regular-webfont.woff -------------------------------------------------------------------------------- /fonts/caladea-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/fonts/caladea-regular-webfont.woff2 -------------------------------------------------------------------------------- /fonts/cinzel-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/fonts/cinzel-bold-webfont.eot -------------------------------------------------------------------------------- /fonts/cinzel-bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/fonts/cinzel-bold-webfont.svg -------------------------------------------------------------------------------- /fonts/cinzel-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/fonts/cinzel-bold-webfont.ttf -------------------------------------------------------------------------------- /fonts/cinzel-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/fonts/cinzel-bold-webfont.woff -------------------------------------------------------------------------------- /fonts/cinzel-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/fonts/cinzel-bold-webfont.woff2 -------------------------------------------------------------------------------- /gameData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/gameData.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/gulpfile.js -------------------------------------------------------------------------------- /img/flourish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/img/flourish.png -------------------------------------------------------------------------------- /img/hollow_knight_title_large_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/img/hollow_knight_title_large_white.png -------------------------------------------------------------------------------- /img/hollow_knight_title_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/img/hollow_knight_title_white.png -------------------------------------------------------------------------------- /img/icon-essence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/img/icon-essence.png -------------------------------------------------------------------------------- /img/icon-geo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/img/icon-geo.png -------------------------------------------------------------------------------- /img/icon-pale-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/img/icon-pale-ore.png -------------------------------------------------------------------------------- /img/irongrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/img/irongrip.png -------------------------------------------------------------------------------- /img/social-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/img/social-card.png -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/js/app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/package.json -------------------------------------------------------------------------------- /scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/scss/app.scss -------------------------------------------------------------------------------- /scss/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/scss/fonts.scss -------------------------------------------------------------------------------- /scss/normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/scss/normalize.scss -------------------------------------------------------------------------------- /sketch/favicon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/sketch/favicon.sketch -------------------------------------------------------------------------------- /sketch/social-card.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/sketch/social-card.sketch -------------------------------------------------------------------------------- /twig/common_list.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/twig/common_list.twig -------------------------------------------------------------------------------- /twig/description_list.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/twig/description_list.twig -------------------------------------------------------------------------------- /twig/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulatron/hollow-knight-checklist/HEAD/twig/index.twig --------------------------------------------------------------------------------