2020-07-09 00:20:09 -04:00
|
|
|
module SinglePage (make) where
|
2020-07-07 23:28:09 -04:00
|
|
|
|
2020-09-25 17:08:44 -04:00
|
|
|
import Date
|
2020-08-11 14:29:54 -04:00
|
|
|
import Info
|
2020-07-15 15:31:46 -04:00
|
|
|
import BuilderQQ
|
2020-07-16 10:07:28 -04:00
|
|
|
import Records ()
|
2020-10-06 16:07:39 -04:00
|
|
|
import qualified NsfwWarning
|
2020-07-12 22:01:31 -04:00
|
|
|
|
2020-07-11 23:40:14 -04:00
|
|
|
import Control.Exception
|
2022-01-03 14:45:55 -05:00
|
|
|
import Control.Monad
|
2022-08-16 21:11:56 -04:00
|
|
|
import Data.List (sort, intersperse)
|
2022-12-26 16:04:57 -05:00
|
|
|
import Data.Maybe (fromMaybe, isNothing, isJust)
|
2020-07-07 23:28:09 -04:00
|
|
|
import qualified Data.Text as Strict
|
|
|
|
import qualified Data.Text.Lazy as Lazy
|
2022-05-16 04:25:16 -04:00
|
|
|
import System.FilePath (joinPath, splitPath)
|
2021-08-23 10:35:55 -04:00
|
|
|
import qualified Data.HashSet as Set
|
|
|
|
import Data.Traversable
|
2020-07-11 23:40:14 -04:00
|
|
|
|
|
|
|
|
2020-07-12 23:02:16 -04:00
|
|
|
-- | e.g. only nsfw images are present for a non-nsfw page
|
2022-12-30 16:00:13 -05:00
|
|
|
newtype NoEligibleImages = NoEligibleImages {title :: Strict.Text}
|
2020-07-11 23:40:14 -04:00
|
|
|
deriving stock Eq deriving anyclass Exception
|
|
|
|
|
|
|
|
instance Show NoEligibleImages where
|
|
|
|
show (NoEligibleImages {title}) =
|
|
|
|
Strict.unpack title <> ": no images selected\n" <>
|
|
|
|
" (probably a nsfw-only work without --nsfw set)"
|
2020-07-07 23:28:09 -04:00
|
|
|
|
|
|
|
|
2020-08-11 14:29:54 -04:00
|
|
|
make :: Text -- ^ website root
|
2022-08-10 19:54:12 -04:00
|
|
|
-> Text -- ^ website name
|
2020-08-11 14:29:54 -04:00
|
|
|
-> FilePath -- ^ gallery prefix
|
|
|
|
-> Bool -- ^ nsfw?
|
2020-08-08 19:22:00 -04:00
|
|
|
-> FilePath -- ^ data dir
|
|
|
|
-> FilePath -- ^ subdir of datadir containing this @info.yaml@
|
|
|
|
-> Info -> IO Lazy.Text
|
2022-08-10 19:54:12 -04:00
|
|
|
make root siteName prefix nsfw dataDir dir info =
|
|
|
|
toLazyText <$> make' root siteName prefix nsfw dataDir dir info
|
2020-07-07 23:28:09 -04:00
|
|
|
|
2022-08-10 19:54:12 -04:00
|
|
|
make' :: Text -> Text -> FilePath -> Bool -> FilePath -> FilePath -> Info
|
|
|
|
-> IO Builder
|
|
|
|
make' root siteName prefix nsfw _dataDir dir
|
|
|
|
info@(Info {date, title, artist, bg}) = do
|
2022-05-16 04:25:16 -04:00
|
|
|
let images = imagesFor nsfw info
|
2020-08-08 19:22:00 -04:00
|
|
|
|
|
|
|
let undir = joinPath (replicate (length (splitPath dir)) "..")
|
|
|
|
|
2020-09-25 17:08:44 -04:00
|
|
|
let formattedDate = formatLong date
|
2020-08-08 19:22:00 -04:00
|
|
|
|
2021-08-23 10:35:55 -04:00
|
|
|
let buttonBar = makeButtonBar title $ addIds images
|
2022-12-30 16:00:13 -05:00
|
|
|
|
|
|
|
let allImages = #all images
|
|
|
|
let image0@(Image {path = path0, download = download0'}) = head allImages
|
|
|
|
let otherImages = tail allImages
|
|
|
|
|
2022-05-16 04:25:16 -04:00
|
|
|
let download0 = fromMaybe (bigFile path0) download0'
|
2020-08-08 19:22:00 -04:00
|
|
|
let path0' = pageFile path0
|
|
|
|
|
2024-07-07 13:45:50 -04:00
|
|
|
let artistSection = makeArtist artist
|
|
|
|
let descSection = makeDesc $ descFor nsfw info
|
|
|
|
let tagsList = makeTags undir $ tagsFor nsfw info
|
|
|
|
let linksList = extLinks $ linksFor nsfw info
|
|
|
|
let updates = sort $ updatesFor nsfw info
|
|
|
|
let updatesList = makeUpdates updates
|
2020-08-08 19:22:00 -04:00
|
|
|
|
2022-05-16 04:25:16 -04:00
|
|
|
let makePrefetch (Image {path}) = [b|<link rel=prefetch href=$path'>|]
|
|
|
|
where path' = bigFile path
|
|
|
|
let prefetches = map makePrefetch otherImages
|
2020-08-08 19:22:00 -04:00
|
|
|
|
2020-10-06 16:07:39 -04:00
|
|
|
let makeWarning w = [b|@0
|
2020-08-08 19:22:00 -04:00
|
|
|
<figcaption id=cw aria-role=button tabindex=0>
|
2020-09-13 20:35:56 -04:00
|
|
|
<span id=cw-text>$w</span>
|
2020-08-08 19:22:00 -04:00
|
|
|
</figcaption>
|
2020-08-09 23:42:18 -04:00
|
|
|
|]
|
|
|
|
|
2022-12-26 14:09:25 -05:00
|
|
|
let defWarning = [b|
|
|
|
|
i forgot to add a cw, sorry! <br>
|
|
|
|
if you can let me know i'd appreciate it
|
|
|
|
|]
|
2021-06-03 22:07:05 -04:00
|
|
|
let warning'
|
|
|
|
| Just w <- #warning image0 = makeWarning w
|
|
|
|
| #nsfw image0 = makeWarning defWarning
|
|
|
|
| otherwise = mempty
|
2020-09-13 20:34:21 -04:00
|
|
|
let warningT = makeWarning [b|.|]
|
|
|
|
|
2023-03-07 10:14:42 -05:00
|
|
|
let bgStyle = case bg of
|
|
|
|
Default -> ""
|
|
|
|
NoBorder -> [b|@0
|
|
|
|
<style>
|
|
|
|
#mainfig {
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|]
|
|
|
|
Other col -> [b|@0
|
|
|
|
<style> #mainfig { background: $col; } </style>
|
|
|
|
|]
|
2020-08-08 19:22:00 -04:00
|
|
|
|
2020-08-30 13:13:40 -04:00
|
|
|
let url = [b|$root/$prefix/$dir|]
|
2020-08-11 14:29:54 -04:00
|
|
|
let desc = case artist of
|
2020-08-30 13:13:40 -04:00
|
|
|
Just (Artist {name}) -> [b|by $name|]
|
2020-08-11 14:29:54 -04:00
|
|
|
Nothing -> "by niss"
|
|
|
|
let thumb = getThumb "" info
|
|
|
|
|
2022-08-16 21:11:56 -04:00
|
|
|
let updateDate = ifJust (last' updates) \(d, _) ->
|
2020-11-16 17:30:56 -05:00
|
|
|
let updated = formatLong d in
|
|
|
|
[b|<br> <span class=updated>updated $updated</span>|]
|
2020-09-19 01:51:52 -04:00
|
|
|
|
2022-01-03 14:45:55 -05:00
|
|
|
let nsfw' = NsfwWarning.Single <$ guard nsfw
|
|
|
|
let nsfwScript = NsfwWarning.script nsfw'
|
|
|
|
let nsfwDialog = NsfwWarning.dialog nsfw'
|
2020-10-06 16:07:39 -04:00
|
|
|
|
2022-12-26 14:07:38 -05:00
|
|
|
let imageMeta =
|
|
|
|
if #sfw image0 && isNothing (#warning image0) then [b|@0
|
|
|
|
<meta property=og:image content="$url/$path0'">
|
|
|
|
<meta name=twitter:card content=summary_large_image>
|
|
|
|
<meta name=twitter:image content="$url/$path0'">
|
|
|
|
|] else [b|@0
|
|
|
|
<meta property=og:image content="$url/$thumb">
|
|
|
|
<meta name=twitter:card content=summary>
|
|
|
|
|]
|
|
|
|
|
2020-08-08 19:22:00 -04:00
|
|
|
pure [b|@0
|
2020-07-12 22:01:31 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang=en>
|
|
|
|
<meta charset=utf-8>
|
2020-08-04 12:59:09 -04:00
|
|
|
<meta name=viewport content="width=1200,viewport-fit=cover">
|
2020-08-04 17:12:58 -04:00
|
|
|
<link rel=stylesheet href=/style/shiny/single.css>
|
2020-08-04 18:52:56 -04:00
|
|
|
<link rel=icon href=/style/niss.svg>
|
2020-07-17 06:29:13 -04:00
|
|
|
|
2022-12-26 14:07:38 -05:00
|
|
|
<meta property=og:type content=article>
|
2020-08-30 13:13:40 -04:00
|
|
|
<meta property=og:title content="$title">
|
2022-08-10 19:54:12 -04:00
|
|
|
<meta property=og:site_name content="$siteName">
|
2020-08-11 14:29:54 -04:00
|
|
|
<meta property=og:description content="$desc">
|
|
|
|
<meta property=og:url content="$url">
|
2020-09-19 02:13:13 -04:00
|
|
|
<meta name=twitter:site content=@2_gecs>
|
2022-12-26 14:07:38 -05:00
|
|
|
$imageMeta
|
2020-08-11 14:29:54 -04:00
|
|
|
|
2022-11-12 06:14:42 -05:00
|
|
|
<meta name=robots content='noai,noimageai'>
|
|
|
|
|
2023-09-06 19:17:21 -04:00
|
|
|
<script src=/script/single.js type=module></script>
|
2020-10-06 16:07:39 -04:00
|
|
|
$nsfwScript
|
2020-08-09 23:42:18 -04:00
|
|
|
$bgStyle
|
2020-08-03 13:32:40 -04:00
|
|
|
|
2020-07-25 07:59:04 -04:00
|
|
|
$0.prefetches
|
|
|
|
|
2020-08-30 13:13:40 -04:00
|
|
|
<title>$title</title>
|
2020-07-12 22:01:31 -04:00
|
|
|
|
2020-10-06 16:07:39 -04:00
|
|
|
$nsfwDialog
|
2020-07-12 22:01:31 -04:00
|
|
|
|
2020-10-06 16:07:39 -04:00
|
|
|
<div class=page>
|
|
|
|
<header>
|
|
|
|
<h1>$title</h1>
|
|
|
|
<h2 id=date class="right corner">
|
|
|
|
$formattedDate $updateDate
|
|
|
|
</h2>
|
2023-07-10 04:59:07 -04:00
|
|
|
<h2 class="left corner">
|
|
|
|
<a href=$undir>back to gallery</a>
|
|
|
|
</h2>
|
2020-10-06 16:07:39 -04:00
|
|
|
</header>
|
2020-07-17 06:29:13 -04:00
|
|
|
|
2020-10-06 16:07:39 -04:00
|
|
|
$2.buttonBar
|
2020-07-12 22:01:31 -04:00
|
|
|
|
2020-10-06 16:07:39 -04:00
|
|
|
<main>
|
2022-05-16 04:25:16 -04:00
|
|
|
<figure id=mainfig>
|
2020-10-06 16:07:39 -04:00
|
|
|
$warning'
|
|
|
|
<a id=mainlink href="$download0" title="download full version">
|
|
|
|
<img id=mainimg src="$path0'" alt="">
|
|
|
|
</a>
|
|
|
|
</figure>
|
2020-07-12 22:01:31 -04:00
|
|
|
|
2020-10-06 16:07:39 -04:00
|
|
|
<div id=info>
|
2024-07-07 13:45:50 -04:00
|
|
|
$6.artistSection
|
|
|
|
|
2020-10-06 16:07:39 -04:00
|
|
|
$6.descSection
|
2020-07-12 22:01:31 -04:00
|
|
|
|
2022-02-26 19:03:28 -05:00
|
|
|
$6.updatesList
|
2020-09-19 01:51:52 -04:00
|
|
|
|
2020-10-06 16:07:39 -04:00
|
|
|
$6.linksList
|
|
|
|
|
2022-02-26 19:03:28 -05:00
|
|
|
$6.tagsList
|
2020-10-06 16:07:39 -04:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</div>
|
2020-09-13 20:34:21 -04:00
|
|
|
|
|
|
|
<template id=cw-template>
|
|
|
|
$warningT
|
|
|
|
</template>
|
2020-07-12 22:01:31 -04:00
|
|
|
|]
|
2020-07-17 06:29:13 -04:00
|
|
|
|
2020-11-16 17:30:56 -05:00
|
|
|
last' :: [a] -> Maybe a
|
|
|
|
last' xs = if null xs then Nothing else Just $ last xs
|
|
|
|
|
2024-07-07 13:45:50 -04:00
|
|
|
makeArtist :: Maybe Artist -> Builder
|
|
|
|
makeArtist Nothing = ""
|
|
|
|
makeArtist (Just (Artist {name, url})) = [b|@0
|
|
|
|
<section id=desc class=info-section>
|
|
|
|
<h2>by</h2>
|
|
|
|
<div>$artistLink</div>
|
|
|
|
</section>
|
|
|
|
|]
|
2020-07-14 00:51:46 -04:00
|
|
|
where
|
|
|
|
artistLink = case url of
|
2020-08-30 13:13:40 -04:00
|
|
|
Just u -> [b|<a href="$u">$name</a>|]
|
|
|
|
Nothing -> [b|$name|]
|
2020-07-14 00:51:46 -04:00
|
|
|
|
2021-03-07 16:08:44 -05:00
|
|
|
makeDesc :: Desc -> Builder
|
|
|
|
makeDesc NoDesc = ""
|
|
|
|
makeDesc (TextDesc desc) = [b|@0
|
2020-08-04 12:58:40 -04:00
|
|
|
<section id=desc class=info-section>
|
2020-08-03 13:36:48 -04:00
|
|
|
<h2>about</h2>
|
|
|
|
<div>
|
2020-10-06 16:07:39 -04:00
|
|
|
$4.desc
|
2020-08-03 13:36:48 -04:00
|
|
|
</div>
|
|
|
|
</section>
|
2020-07-12 22:01:31 -04:00
|
|
|
|]
|
2021-03-07 16:08:44 -05:00
|
|
|
makeDesc (LongDesc fs) = [b|@0
|
|
|
|
<section id=desc class=info-section>
|
2021-03-07 18:13:22 -05:00
|
|
|
$2.fields
|
2021-03-07 16:08:44 -05:00
|
|
|
</section>
|
|
|
|
|]
|
|
|
|
where
|
|
|
|
fields = map makeField fs
|
|
|
|
makeField (DescField {name, text}) = [b|@0
|
|
|
|
<h2>$name</h2>
|
|
|
|
<div>
|
|
|
|
$4.text
|
|
|
|
</div>
|
|
|
|
|]
|
2020-07-07 23:28:09 -04:00
|
|
|
|
2022-05-16 04:25:16 -04:00
|
|
|
addIds :: Traversable t => t Image -> t (Image, Text)
|
2021-08-23 10:35:55 -04:00
|
|
|
addIds = snd . mapAccumL makeId Set.empty where
|
2022-05-16 04:25:16 -04:00
|
|
|
makeId used img = (Set.insert newId used, (img, newId)) where
|
2021-08-23 10:35:55 -04:00
|
|
|
newId = head $ filter (\i -> not $ i `Set.member` used) ids
|
|
|
|
ids = [toStrictText [b|$label$i|] | i <- "" : map show [0::Int ..]]
|
|
|
|
label = escId $ #label img
|
|
|
|
|
2022-05-16 04:25:16 -04:00
|
|
|
makeButtonBar :: Strict.Text -> Images' (Image, Text) -> Builder
|
2020-07-25 07:58:53 -04:00
|
|
|
makeButtonBar title images =
|
2021-03-12 23:30:28 -05:00
|
|
|
case images of
|
2021-08-23 10:30:11 -04:00
|
|
|
Uncat [] -> throw $ NoEligibleImages title
|
|
|
|
Uncat [_] -> ""
|
|
|
|
Cat [(_,[_])] -> ""
|
|
|
|
Uncat imgs -> makeNav "uncat" $ makeAlts imgs
|
2022-05-02 10:29:58 -04:00
|
|
|
Cat cats
|
|
|
|
| all ((<= 1) . length . snd) cats ->
|
|
|
|
makeButtonBar title $ Uncat $ flatten cats
|
2022-11-12 06:13:02 -05:00
|
|
|
| [(_, imgs)] <- cats ->
|
|
|
|
makeButtonBar title (Uncat imgs)
|
2022-05-02 10:29:58 -04:00
|
|
|
| otherwise ->
|
|
|
|
makeNav "cat" $ map (uncurry makeCat) cats
|
2021-08-23 10:30:11 -04:00
|
|
|
where
|
2022-12-26 16:04:57 -05:00
|
|
|
makeNav (cls :: Text) inner = [b|@0
|
|
|
|
<nav id=alts class=$cls aria-label="alternate versions">
|
|
|
|
$2.inner
|
|
|
|
$2.skipAll
|
|
|
|
</nav> |]
|
|
|
|
makeCat lbl imgs = [b|@0
|
|
|
|
<section>
|
|
|
|
<h3 class=alt-cat>$lbl</h3>
|
|
|
|
$0.alts
|
|
|
|
</section> |]
|
|
|
|
where alts = makeAlts imgs
|
|
|
|
makeAlts imgs = [b|@0
|
|
|
|
<ul class="buttonbar bb-choice">
|
|
|
|
$2.elems
|
|
|
|
</ul> |]
|
2022-12-30 16:00:13 -05:00
|
|
|
where elems = map (uncurry altButton) imgs
|
2022-12-26 16:04:57 -05:00
|
|
|
skipAll =
|
|
|
|
if any (isJust . #warning . fst) images then
|
|
|
|
[b|@0
|
|
|
|
<div class=buttonbar id=skipAllDiv>
|
|
|
|
<input type=checkbox name=skipAll id=skipAll>
|
|
|
|
<label for=skipAll>skip warnings</label>
|
|
|
|
</div>
|
|
|
|
|]
|
2024-07-07 13:45:50 -04:00
|
|
|
else ""
|
2020-07-09 15:48:29 -04:00
|
|
|
|
2022-05-16 04:25:16 -04:00
|
|
|
flatten :: [(Text, [(Image, a)])] -> [(Image, Text)]
|
2022-05-02 10:29:58 -04:00
|
|
|
flatten cats =
|
2022-05-16 04:25:16 -04:00
|
|
|
addIds [(img {label = cat}) | (cat, is) <- cats, (img, _) <- is]
|
2022-05-02 10:29:58 -04:00
|
|
|
|
2022-05-16 04:25:16 -04:00
|
|
|
altButton :: Image -> Text -> Builder
|
|
|
|
altButton img i = [b|@0
|
2020-07-12 22:01:31 -04:00
|
|
|
<li$nsfwClass>
|
2021-08-23 10:35:55 -04:00
|
|
|
<input type=radio name=variant id="$i" value="$path'"
|
2022-05-16 04:25:16 -04:00
|
|
|
data-link="$link"$warning'>
|
2021-08-23 10:35:55 -04:00
|
|
|
<label for="$i"$nsfwLabelClass>$label</label>
|
2020-07-12 22:01:31 -04:00
|
|
|
|]
|
2020-07-07 23:28:09 -04:00
|
|
|
where
|
2021-02-09 06:50:22 -05:00
|
|
|
Image {label, path, nsfw, warning, download} = img
|
2020-08-30 13:13:40 -04:00
|
|
|
nsfwClass = if nsfw then [b| class=nsfw|] else ""
|
|
|
|
nsfwLabelClass = if nsfw then [b| class=nsfw-label|] else ""
|
2020-08-04 12:58:40 -04:00
|
|
|
path' = pageFile path
|
2022-05-16 04:25:16 -04:00
|
|
|
link = fromMaybe (bigFile path) download
|
2020-09-13 20:33:27 -04:00
|
|
|
warning' = ifJust warning \(escAttr -> w) -> [b| data-warning="$w"|]
|
2020-07-07 23:28:09 -04:00
|
|
|
|
2020-08-04 13:05:20 -04:00
|
|
|
makeTags :: FilePath -> [Strict.Text] -> Builder
|
|
|
|
makeTags undir tags =
|
2020-10-06 16:07:39 -04:00
|
|
|
if null tags then "" else [b|@0
|
2020-08-04 12:26:36 -04:00
|
|
|
<nav id=tags class=info-section>
|
2020-07-12 22:01:31 -04:00
|
|
|
<h2>tags</h2>
|
2022-12-29 21:19:33 -05:00
|
|
|
<ul>
|
2020-10-06 16:07:39 -04:00
|
|
|
$4.tagList
|
2020-07-12 22:01:31 -04:00
|
|
|
</ul>
|
2020-08-04 12:26:36 -04:00
|
|
|
</nav>
|
2020-07-12 22:01:31 -04:00
|
|
|
|]
|
2020-07-11 23:42:31 -04:00
|
|
|
where
|
2020-07-12 22:01:31 -04:00
|
|
|
tagList = map makeTag tags
|
2020-08-30 13:13:40 -04:00
|
|
|
makeTag tag = [b|<li><a href="$undir#require_$tag'">$tag</a>|]
|
2020-08-04 13:05:20 -04:00
|
|
|
where tag' = escId tag
|
2020-07-11 23:42:31 -04:00
|
|
|
|
2020-08-03 13:36:48 -04:00
|
|
|
extLinks :: [Link] -> Builder
|
|
|
|
extLinks links =
|
2020-10-06 16:07:39 -04:00
|
|
|
if null links then "" else [b|@0
|
2020-08-04 12:26:36 -04:00
|
|
|
<nav id=links class=info-section>
|
2020-07-12 22:01:31 -04:00
|
|
|
<h2>links</h2>
|
2023-08-06 00:11:54 -04:00
|
|
|
<ul>
|
2020-10-06 16:07:39 -04:00
|
|
|
$4.linkList
|
2020-07-12 22:01:31 -04:00
|
|
|
</ul>
|
2020-08-04 12:26:36 -04:00
|
|
|
</nav>
|
2020-07-12 22:01:31 -04:00
|
|
|
|]
|
2020-08-03 13:36:48 -04:00
|
|
|
where linkList = map extLink links
|
2020-07-09 15:48:29 -04:00
|
|
|
|
2020-07-07 23:28:09 -04:00
|
|
|
extLink :: Link -> Builder
|
2020-08-04 12:26:36 -04:00
|
|
|
extLink (Link {title, url}) = [b|@8
|
2020-07-12 22:01:31 -04:00
|
|
|
<li>
|
2020-08-30 13:13:40 -04:00
|
|
|
<a href="$url">
|
|
|
|
$title
|
2020-07-12 22:01:31 -04:00
|
|
|
</a>
|
|
|
|
|]
|
2020-07-31 20:27:24 -04:00
|
|
|
|
2022-08-16 21:11:56 -04:00
|
|
|
makeUpdates :: [(Date, [Update])] -> Builder
|
2020-09-19 01:51:52 -04:00
|
|
|
makeUpdates ups =
|
2022-11-12 06:13:02 -05:00
|
|
|
if all (null . snd) ups then "" else [b|@4
|
2020-09-19 01:51:52 -04:00
|
|
|
<section id=updates class=info-section>
|
|
|
|
<h2>updates</h2>
|
|
|
|
<dl>
|
|
|
|
$8.updateList
|
|
|
|
</dl>
|
|
|
|
</section>
|
|
|
|
|]
|
2022-08-16 21:11:56 -04:00
|
|
|
where updateList = map (uncurry makeUpdate) ups
|
2020-09-19 01:51:52 -04:00
|
|
|
|
2022-08-16 21:11:56 -04:00
|
|
|
makeUpdate :: Date -> [Update] -> Builder
|
2022-11-12 06:13:02 -05:00
|
|
|
makeUpdate _ [] = ""
|
2022-08-16 21:11:56 -04:00
|
|
|
makeUpdate date ups = [b|@8
|
2020-09-19 01:51:52 -04:00
|
|
|
<dt>$date'
|
2020-11-16 17:30:56 -05:00
|
|
|
<dd>$desc
|
2022-08-16 21:11:56 -04:00
|
|
|
|] where
|
|
|
|
date' = formatSlash date
|
|
|
|
desc = mconcat $ map fromText $ intersperse "; " $ map #desc ups
|