feat: metadata test

This commit is contained in:
Nick 2024-12-29 18:55:06 -06:00
parent 9e920eb01f
commit 9541412419
75 changed files with 266 additions and 215 deletions

View file

@ -192,16 +192,7 @@ contentList shared interview =
_ ->
image "Fatty"
in
[ row
[ paddingEach
{ top = 3
, right = 0
, bottom = 0
, left = 0
}
, detailSpacing
, width fill
]
[ detailFormat row
[ imageMaker
, detailFormat column
[ socialMaker interview.interviewSocial interview.interviewSocial
@ -214,7 +205,7 @@ contentList shared interview =
appearanceMaker : Shared.Model -> Interview -> Element msg
appearanceMaker shared interview =
detailFormat paragraph
detailFormat column
[ listMaker2 (makeAppearance shared) interview.interviewAppearances ]
@ -234,9 +225,9 @@ makeAppearance shared appearanceEntry index =
episodeMaker : Appearance -> Element msg
episodeMaker appearanceEntry =
newTabLink
[]
[ width fill ]
{ url = appearanceEntry.appearanceLink
, label = detailTitleMaker TextLightOrange ("#" ++ appearanceEntry.appearanceEpisode ++ ": " ++ appearanceEntry.appearanceTitle)
, label = detailTitleLinkWide TextLightOrange ("#" ++ appearanceEntry.appearanceEpisode ++ ": " ++ appearanceEntry.appearanceTitle)
}