├── .gitignore ├── README.md ├── src └── input.css ├── static ├── css │ └── styles.css └── imgs │ ├── MeloNX.svg │ ├── credit │ ├── GreemRyujinx.svg │ ├── OGRyujinx.png │ ├── hyper.png │ ├── stossy11.jpg │ └── techguy.png │ ├── gitea.svg │ └── thumbnails │ ├── BOTW.avif │ ├── MK8DX.avif │ ├── SM3DW.avif │ └── TOTK.avif └── templates ├── base.html ├── compatibility ├── compatibility_list_item.html ├── index.html └── request_game_entry.html ├── error.html └── home ├── download_ipa.html ├── index.html └── tester_login.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/README.md -------------------------------------------------------------------------------- /src/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/src/input.css -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/imgs/MeloNX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/static/imgs/MeloNX.svg -------------------------------------------------------------------------------- /static/imgs/credit/GreemRyujinx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/static/imgs/credit/GreemRyujinx.svg -------------------------------------------------------------------------------- /static/imgs/credit/OGRyujinx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/static/imgs/credit/OGRyujinx.png -------------------------------------------------------------------------------- /static/imgs/credit/hyper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/static/imgs/credit/hyper.png -------------------------------------------------------------------------------- /static/imgs/credit/stossy11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/static/imgs/credit/stossy11.jpg -------------------------------------------------------------------------------- /static/imgs/credit/techguy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/static/imgs/credit/techguy.png -------------------------------------------------------------------------------- /static/imgs/gitea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/static/imgs/gitea.svg -------------------------------------------------------------------------------- /static/imgs/thumbnails/BOTW.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/static/imgs/thumbnails/BOTW.avif -------------------------------------------------------------------------------- /static/imgs/thumbnails/MK8DX.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/static/imgs/thumbnails/MK8DX.avif -------------------------------------------------------------------------------- /static/imgs/thumbnails/SM3DW.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/static/imgs/thumbnails/SM3DW.avif -------------------------------------------------------------------------------- /static/imgs/thumbnails/TOTK.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/static/imgs/thumbnails/TOTK.avif -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/compatibility/compatibility_list_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/templates/compatibility/compatibility_list_item.html -------------------------------------------------------------------------------- /templates/compatibility/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/templates/compatibility/index.html -------------------------------------------------------------------------------- /templates/compatibility/request_game_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/templates/compatibility/request_game_entry.html -------------------------------------------------------------------------------- /templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/templates/error.html -------------------------------------------------------------------------------- /templates/home/download_ipa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/templates/home/download_ipa.html -------------------------------------------------------------------------------- /templates/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/templates/home/index.html -------------------------------------------------------------------------------- /templates/home/tester_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeloNX-Emu/MeloNX-Site-Frontend/HEAD/templates/home/tester_login.html --------------------------------------------------------------------------------