A simple site which contains flashcards covering different sections of the CTFL syllabus. The questions and materials used when writing the same are alligned with version 4.0 of the certification.
The site is simple, hovering over each card reveals its answer and using the different filters present ( work in progress ) shows only cards which relate to that specific chapter of the syllabus.
If you wish to add your own question feel free to download the code and add objects to the Questions and Answers array in the format:
{
"Id": 1,
"Question": "This would be on the front of the card?",
"Answer": "Yes, also this piece of text would show up on the back as a single paragraph",
"Answers": [
"Each answer here",
"Will show up as a bullet point",
"On the back of the card"
],
"ChapterKey": "FOT"
}Idis a unique integer which should be incremented by one for each question present in the arrayQuestionis a string which appears as the title on the front of the card, posing as the questionAnsweris a single paragraph which appears at the back of the cardAnswersis an array of strings in which every string appears as a bullet point at the back of the cardChapterKeyshould be one of the keys present in the Chapters array. This enables filtering cards by their respective chapter
Note: If any of these variables are not defined, then that element will simply not be rendered on the screen for that card.