├── .gitignore ├── apkg └── anki-template-shanbay.apkg ├── package.json ├── postcss.config.js ├── readme.md ├── readme_en.md ├── screenshots └── screenshots.jpg ├── src ├── back.html ├── front.html ├── index.html ├── js │ ├── back.js │ ├── front.js │ └── mock.js ├── public │ ├── hello.mp3 │ └── sentence.mp3 └── style.css ├── tailwind.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | *.local 4 | dist -------------------------------------------------------------------------------- /apkg/anki-template-shanbay.apkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/apkg/anki-template-shanbay.apkg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/postcss.config.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/readme.md -------------------------------------------------------------------------------- /readme_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/readme_en.md -------------------------------------------------------------------------------- /screenshots/screenshots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/screenshots/screenshots.jpg -------------------------------------------------------------------------------- /src/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/src/back.html -------------------------------------------------------------------------------- /src/front.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/src/front.html -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/back.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/src/js/back.js -------------------------------------------------------------------------------- /src/js/front.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/src/js/front.js -------------------------------------------------------------------------------- /src/js/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/src/js/mock.js -------------------------------------------------------------------------------- /src/public/hello.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/src/public/hello.mp3 -------------------------------------------------------------------------------- /src/public/sentence.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/src/public/sentence.mp3 -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/src/style.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z233/anki-template-shanbay/HEAD/vite.config.js --------------------------------------------------------------------------------