mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 20:35:13 -05:00
feat: changed some stuff around
This commit is contained in:
parent
d03e4d23ee
commit
5afff4a0e4
9 changed files with 25 additions and 24 deletions
|
@ -26,12 +26,12 @@ argumentAnabolicKeto =
|
|||
[ { premise = "If a higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets, then a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets."
|
||||
, notation = "(P→Q)"
|
||||
}
|
||||
, { premise = "A higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets."
|
||||
, notation = "(P)"
|
||||
}
|
||||
, { premise = "If a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets, then ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets."
|
||||
, notation = "(Q→R)"
|
||||
}
|
||||
, { premise = "A higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets."
|
||||
, notation = "(P)"
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets."
|
||||
, conclusionNotation = "(∴R)"
|
||||
|
|
|
@ -9,7 +9,7 @@ argumentAntiVandalism =
|
|||
, propositionTitle = "Vandalizing zoos increases the probability of harming the animals they keep."
|
||||
, propositionReductio = ""
|
||||
, propositionSummary = "Summary"
|
||||
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(P),(Q~5R)%7C=(R)"
|
||||
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(P),(Q~5R)%7C=(R)"
|
||||
, definitionTable =
|
||||
[ { definiendum = "P"
|
||||
, definiens = "zoos must spend extra money cleaning graffiti"
|
||||
|
@ -26,15 +26,15 @@ argumentAntiVandalism =
|
|||
[ { premise = "If zoos must spend extra money cleaning graffiti, then zoos will have less money to devote to animal care."
|
||||
, notation = "(P→Q)"
|
||||
}
|
||||
, { premise = "If zoos will have less money to devote to animal care, then vandalizing zoos increases the probability of harming the animals they keep."
|
||||
, notation = "(Q→R)"
|
||||
}
|
||||
, { premise = "Zoos must spend extra money cleaning graffiti."
|
||||
, notation = "(P)"
|
||||
}
|
||||
, { premise = "If zoos will have less money to devote to animal care, then vandalizing zoos increases the probability of harming the animals they keep."
|
||||
, notation = "(Q→R)"
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, vandalizing zoos increases the probability of harming the animals they keep."
|
||||
, conclusionNotation = "(∴R)"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@ import Debate.Types exposing (..)
|
|||
import Effect exposing (Effect)
|
||||
import Element exposing (..)
|
||||
import Element.Border as D exposing (..)
|
||||
import Element.Events as V exposing (..)
|
||||
import Element.Font as F
|
||||
import Html
|
||||
import Html.Attributes as H exposing (style, title, wrap)
|
||||
|
@ -67,7 +68,7 @@ argumentMaker argument =
|
|||
reductio ->
|
||||
paragraph (paragraphBoldFormat ++ [ F.size 18 ])
|
||||
[ text "Reductio: " |> el [ F.color colourTheme.highlightText ]
|
||||
, text reductio |> el [ F.color colourTheme.nonHighlightedText, F.regular, F.size 16 ]
|
||||
, text reductio |> el [ F.color colourTheme.nonHighlightedText, F.regular, F.size 16 ], text " Ⓘ" -- create a tooltip for this in the future
|
||||
]
|
||||
in
|
||||
column
|
||||
|
@ -76,7 +77,7 @@ argumentMaker argument =
|
|||
[ newTabLink []
|
||||
{ url = argument.proofLink
|
||||
, label = transitionNonHighlightedLinkHover <| text argument.argumentTitle
|
||||
}
|
||||
} --create expandable text for this in the future
|
||||
]
|
||||
, paragraph (paragraphBoldFormat ++ [ F.size 18 ])
|
||||
[ text "Proposition: " |> el [ F.color colourTheme.highlightText ]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue