feat: lots of work

This commit is contained in:
Nick 2024-12-12 03:54:17 -06:00
parent 49dabb8496
commit 7b8faede8d
3 changed files with 34 additions and 10 deletions

0
frontend/src/Config/Helpers/ArticleFormat.elm Normal file → Executable file
View file

View file

@ -25,7 +25,7 @@ servicesDebateCoaching =
, serviceArticle =
{ articleTitles =
{ title1 = "What You Get"
, title2 = "What We Need"
, title2 = "Syllabus"
, title3 = "Module 1"
, title4 = "Module 2"
, title5 = "Module 3"
@ -45,17 +45,36 @@ servicesDebateCoaching =
, "Optional mock debates and staged confrontations, helping you gain experience and confidence in real-world debates."
]
, list2 =
[""]
, list3 =
["Learn about the most common logical fallacies.", ""]
[ "" ]
, list3 =
[ "Study both common and obscure logical fallacies."
, "Learn to identify and rebut fallacious reasoning."
, "Test your knowledge of logical fallacies."
]
, list4 =
[]
[ "Assignment review."
, "Study concepts related to formal logic and argumentation."
, "Learn the lexicon of debate and formal reasoning."
, "Test your knowledge of debate-related terminology."
]
, list5 =
[]
[ "Assignment review."
, "Study philosophical concepts relevant to debate."
, "Learn about epistemology and the philosophy of science."
, "Test your knowledge of debate-related philosophical concepts."
]
, list6 =
[]
[ "Assignment review."
, "Study the different modes of argumentation."
, "Learn the principles and axioms of propositional logic."
, "Test your knowledge of propositional logic fundamentals."
]
, list7 =
[]
[ "Assignment review."
, "Study the inference rules of propositional logic."
, "Learn how to form valid formal arguments."
, "Test your knowledge of formal logic."
]
, list8 =
[]
, list9 =

View file

@ -132,10 +132,15 @@ serviceMaker =
bodyFormat
[ chunkMaker servicesDebateCoaching.serviceArticle.articleParagraph
, titleMaker servicesDebateCoaching.serviceArticle.articleTitles.title1
, highlightedBlockMaker servicesDebateCoaching.serviceArticle.articleTitles.title3 servicesDebateCoaching.serviceArticle.articleListEntries.list3
, numberMaker servicesDebateCoaching.serviceArticle.articleListEntries.list1
, titleMaker servicesDebateCoaching.serviceArticle.articleTitles.title2
, bulletPointMaker servicesDebateCoaching.serviceArticle.articleListEntries.list2
-- modules
, highlightedBlockMaker servicesDebateCoaching.serviceArticle.articleTitles.title3 servicesDebateCoaching.serviceArticle.articleListEntries.list3
, highlightedBlockMaker servicesDebateCoaching.serviceArticle.articleTitles.title4 servicesDebateCoaching.serviceArticle.articleListEntries.list4
, highlightedBlockMaker servicesDebateCoaching.serviceArticle.articleTitles.title5 servicesDebateCoaching.serviceArticle.articleListEntries.list5
, highlightedBlockMaker servicesDebateCoaching.serviceArticle.articleTitles.title6 servicesDebateCoaching.serviceArticle.articleListEntries.list6
, highlightedBlockMaker servicesDebateCoaching.serviceArticle.articleTitles.title7 servicesDebateCoaching.serviceArticle.articleListEntries.list7
]
]
]