├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README-zh-CN.md ├── README.md ├── components ├── MustacheRenderer.tsx ├── PhoneMockup.tsx └── Selection.tsx ├── docs └── demo.png ├── lib └── templates.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ └── templates │ │ ├── [name].ts │ │ └── index.ts └── index.tsx ├── postcss.config.js ├── public ├── favicon.ico └── vercel.svg ├── styles ├── card.css └── globals.css ├── tailwind.card.config.js ├── tailwind.config.js ├── templates ├── basic │ ├── back.html │ ├── data.json │ └── front.html ├── en-vocabulary │ ├── back.html │ ├── data.json │ └── front.html └── es-vocabulary │ ├── back.html │ ├── data.json │ └── front.html ├── tools └── gen_anki_card │ ├── .gitignore │ ├── Cargo.toml │ └── src │ └── main.rs └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/.prettierrc -------------------------------------------------------------------------------- /README-zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/README-zh-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/README.md -------------------------------------------------------------------------------- /components/MustacheRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/components/MustacheRenderer.tsx -------------------------------------------------------------------------------- /components/PhoneMockup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/components/PhoneMockup.tsx -------------------------------------------------------------------------------- /components/Selection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/components/Selection.tsx -------------------------------------------------------------------------------- /docs/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/docs/demo.png -------------------------------------------------------------------------------- /lib/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/lib/templates.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/templates/[name].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/pages/api/templates/[name].ts -------------------------------------------------------------------------------- /pages/api/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/pages/api/templates/index.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/styles/card.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.card.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/tailwind.card.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /templates/basic/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/templates/basic/back.html -------------------------------------------------------------------------------- /templates/basic/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/templates/basic/data.json -------------------------------------------------------------------------------- /templates/basic/front.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/templates/basic/front.html -------------------------------------------------------------------------------- /templates/en-vocabulary/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/templates/en-vocabulary/back.html -------------------------------------------------------------------------------- /templates/en-vocabulary/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/templates/en-vocabulary/data.json -------------------------------------------------------------------------------- /templates/en-vocabulary/front.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/templates/en-vocabulary/front.html -------------------------------------------------------------------------------- /templates/es-vocabulary/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/templates/es-vocabulary/back.html -------------------------------------------------------------------------------- /templates/es-vocabulary/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/templates/es-vocabulary/data.json -------------------------------------------------------------------------------- /templates/es-vocabulary/front.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/templates/es-vocabulary/front.html -------------------------------------------------------------------------------- /tools/gen_anki_card/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/tools/gen_anki_card/.gitignore -------------------------------------------------------------------------------- /tools/gen_anki_card/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/tools/gen_anki_card/Cargo.toml -------------------------------------------------------------------------------- /tools/gen_anki_card/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/tools/gen_anki_card/src/main.rs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TunkShif/Anki-Azul-Template/HEAD/tsconfig.json --------------------------------------------------------------------------------