Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samolego/langcards
A simple language-learning tool framework.
https://github.com/samolego/langcards
language-learning remote-learning school-education
Last synced: 24 days ago
JSON representation
A simple language-learning tool framework.
- Host: GitHub
- URL: https://github.com/samolego/langcards
- Owner: samolego
- License: unlicense
- Created: 2021-02-20T12:45:56.000Z (almost 4 years ago)
- Default Branch: page-source
- Last Pushed: 2023-02-02T20:20:55.000Z (almost 2 years ago)
- Last Synced: 2024-10-15T06:26:08.428Z (2 months ago)
- Topics: language-learning, remote-learning, school-education
- Language: TypeScript
- Homepage: http://samolego.github.io/LangCards
- Size: 1.48 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LangCards
A language learning helper template.
## How to
1. Create a new repository from this template.
2. Add json files from the desired learning topics.
You can also checkout [sample file](https://github.com/samolego/LangCards/blob/page-source/src/cards/animals.json).
```json
[
{
"title": "Cow",
"sound": null,
"image": "smile.png"
},
{
"title": "Bird",
"sound": null,
"image": null
}
]
```
3. Add required images and sounds in `src/img` or `src/sounds` subfolders.
4. Declare the added json files in `src/cards/available.json` in order for them to show on the page.
5. Commit & push.
6. After enabling the GH page (in repository settings), your site will be available at https://.github.io/RepositoryName
(you can view this example at https://samolego.github.io/LangCards).