mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
feat: lots of work
This commit is contained in:
parent
4a19d6eb06
commit
848038b62b
158 changed files with 1361 additions and 685 deletions
|
@ -5,59 +5,9 @@ import Config.Format as O exposing (..)
|
|||
import Config.Identity as I exposing (..)
|
||||
import Config.Response exposing (..)
|
||||
import Config.Viewport exposing (..)
|
||||
import Debate.Arguments.Abortion exposing (..)
|
||||
import Debate.Arguments.Agnosticism exposing (..)
|
||||
import Debate.Arguments.AgriculturalPredation exposing (..)
|
||||
import Debate.Arguments.AnabolicKeto exposing (..)
|
||||
import Debate.Arguments.AnimalRights exposing (..)
|
||||
import Debate.Arguments.AntagonisticPleiotropy exposing (..)
|
||||
import Debate.Arguments.AntiRewilding exposing (..)
|
||||
import Debate.Arguments.AntiVandalism exposing (..)
|
||||
import Debate.Arguments.ApoBCVD exposing (..)
|
||||
import Debate.Arguments.BoobyTrapPagers exposing (..)
|
||||
import Debate.Arguments.CarbsObesity exposing (..)
|
||||
import Debate.Arguments.ColonizingNature exposing (..)
|
||||
import Debate.Arguments.CropDeaths exposing (..)
|
||||
import Debate.Arguments.DairyCowRape exposing (..)
|
||||
import Debate.Arguments.DietaryCholesterol exposing (..)
|
||||
import Debate.Arguments.EfilismPatrolSquad exposing (..)
|
||||
import Debate.Arguments.EpidemiologyCausality exposing (..)
|
||||
import Debate.Arguments.EthicalSlurs exposing (..)
|
||||
import Debate.Arguments.FineTuning exposing (..)
|
||||
import Debate.Arguments.FlatEarthDebunk exposing (..)
|
||||
import Debate.Arguments.FructoseNAFLD exposing (..)
|
||||
import Debate.Arguments.HealthPromotingFoods exposing (..)
|
||||
import Debate.Arguments.HealthSeeker exposing (..)
|
||||
import Debate.Arguments.HealthyChocolate exposing (..)
|
||||
import Debate.Arguments.HealthyDairy exposing (..)
|
||||
import Debate.Arguments.HealthyFattyFish exposing (..)
|
||||
import Debate.Arguments.HealthyFibre exposing (..)
|
||||
import Debate.Arguments.HealthyFood exposing (..)
|
||||
import Debate.Arguments.HealthyPlantFoods exposing (..)
|
||||
import Debate.Arguments.HealthySeedOils exposing (..)
|
||||
import Debate.Arguments.HealthySoy exposing (..)
|
||||
import Debate.Arguments.ImmortalityReductio exposing (..)
|
||||
import Debate.Arguments.Malondialdehyde exposing (..)
|
||||
import Debate.Arguments.OddOrderPredators exposing (..)
|
||||
import Debate.Arguments.Omega3Omega6Ratio exposing (..)
|
||||
import Debate.Arguments.Ostroveganism exposing (..)
|
||||
import Debate.Arguments.PlantBasedCVDReversal exposing (..)
|
||||
import Debate.Arguments.PollinationReductio exposing (..)
|
||||
import Debate.Arguments.PolyphenolReductio exposing (..)
|
||||
import Debate.Arguments.ScratcherPioneers exposing (..)
|
||||
import Debate.Arguments.SodiumCVD exposing (..)
|
||||
import Debate.Arguments.TMAOCausality exposing (..)
|
||||
import Debate.Arguments.Template exposing (argument)
|
||||
import Debate.Arguments.TransPeople exposing (..)
|
||||
import Debate.Arguments.TruncatedMeta exposing (..)
|
||||
import Debate.Arguments.UnhealthyCoconutOil exposing (..)
|
||||
import Debate.Arguments.UnhealthyProcessedMeat exposing (..)
|
||||
import Debate.Arguments.UnhealthyRedMeat exposing (..)
|
||||
import Debate.Arguments.UnhealthySaturatedFat exposing (..)
|
||||
import Debate.Arguments.VeganSocietyReductio exposing (..)
|
||||
import Debate.Arguments.Helpers exposing (..)
|
||||
import Debate.Arguments.Types exposing (..)
|
||||
import Debate.Gibberish.Helpers exposing (..)
|
||||
import Debate.Helpers exposing (..)
|
||||
import Debate.Types exposing (..)
|
||||
import Effect exposing (Effect)
|
||||
import Element exposing (..)
|
||||
import Element.Border as D exposing (..)
|
||||
|
@ -143,7 +93,7 @@ subscriptions model =
|
|||
|
||||
view : Shared.Model -> Model -> View Msg
|
||||
view shared model =
|
||||
{ title = pageNames.pageDebate
|
||||
{ title = "debate (" ++ pageNames.pageArguments ++ ")"
|
||||
, attributes = []
|
||||
, element = debateContainer shared.device
|
||||
}
|
||||
|
@ -175,54 +125,5 @@ debateList device =
|
|||
_ ->
|
||||
List.map argumentMaker
|
||||
)
|
||||
[ argumentApoBCVD
|
||||
, argumentAnabolicKeto
|
||||
, argumentAntagonisticPleiotropy
|
||||
, argumentCarbsObesity
|
||||
, argumentDietaryCholesterol
|
||||
, argumentFructoseNAFLD
|
||||
, argumentHealthPromotingFoods
|
||||
, argumentHealthSeeker
|
||||
, argumentHealthyChocolate
|
||||
, argumentHealthyDairy
|
||||
, argumentHealthyFattyFish
|
||||
, argumentHealthyFibre
|
||||
, argumentHealthyFood
|
||||
, argumentHealthyPlantFoods
|
||||
, argumentHealthySeedOils
|
||||
, argumentHealthySoy
|
||||
, argumentMalondialdehyde
|
||||
, argumentOmega3Omega6Ratio
|
||||
, argumentPlantBasedCVDReversal
|
||||
, argumentPolyphenolReductio
|
||||
, argumentSodiumCVD
|
||||
, argumentTMAOCausality
|
||||
, argumentUnhealthyCoconutOil
|
||||
, argumentUnhealthyProcessedMeat
|
||||
, argumentUnhealthyRedMeat
|
||||
, argumentUnhealthySaturatedFat
|
||||
, argumentAbortion
|
||||
, argumentAgnosticism
|
||||
, argumentAgriculturalPredation
|
||||
, argumentAnimalRights
|
||||
, argumentAntiRewilding
|
||||
, argumentAntiVandalism
|
||||
, argumentColonizingNature
|
||||
, argumentCropDeaths
|
||||
, argumentDairyCowRape
|
||||
, argumentEfilismPatrolSquad
|
||||
, argumentEthicalSlurs
|
||||
, argumentFineTuning
|
||||
, argumentImmortalityReductio
|
||||
, argumentOddOrderPredators
|
||||
, argumentOstroveganism
|
||||
, argumentPollinationReductio
|
||||
, argumentScratcherPioneers
|
||||
, argumentTransPeople
|
||||
, argumentVeganSocietyReductio
|
||||
, argumentBoobyTrapPagers
|
||||
, argumentEpidemiologyCausality
|
||||
, argumentFlatEarthDebunk
|
||||
, argumentTruncatedMeta
|
||||
]
|
||||
argumentList
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue