added grid for gallery

This commit is contained in:
flupe 2020-10-08 13:35:00 +02:00
parent 2eed97086f
commit 0f4d94eb28
2 changed files with 43 additions and 23 deletions

View File

@ -283,8 +283,18 @@ ol.pages li a {
padding: 0 1em; padding: 0 1em;
} }
section.visual {
display: grid;
grid-gap: 1em;
align-items: center;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
section.visual figure { margin: 0 }
figure img { figure img {
max-width: 100%; max-width: 100%;
height: auto;
/* aspect-ratio: attr(width) / attr(height); */
vertical-align: top; vertical-align: top;
} }

View File

@ -5,40 +5,50 @@ import Common
import Templates (outerWith, loading_) import Templates (outerWith, loading_)
import Lucid import Lucid
thumbWidth :: Int
thumbWidth = 710
build :: Task IO () build :: Task IO ()
build = do build = do
pictures <- match "visual/*" \src -> do pictures <- match "visual/*" \src -> do
copyFile src copyFile src
src' <- toAbsolute src callCommandWith
size <- (resized . read) (\a b -> "convert " <> a <> " " <> b)
<$> readCommand "identify" ["-ping", "-format", "(%w, %h)", src'] (-<.> "webp")
processMagick src src
<&> timestamped src' <- toAbsolute src
<&> fmap (size,) size <- (resized . read)
<$> readCommand "identify" ["-ping", "-format", "(%w, %h)", src']
callCommandWith
(\a b -> "convert -resize 710x " <> a <> " " <> b)
(-<.> "thumb.webp")
src
<&> timestamped
<&> fmap (size,)
watch pictures $ match_ "./visual.rst" \src -> do watch pictures $ match_ "./visual.rst" \src -> do
intro <- compilePandoc src intro <- compilePandoc src
write "visual.html" $ renderVisual intro (recentFirst pictures) write "visual.html" $ renderVisual intro (recentFirst pictures)
resized :: (Int, Int) -> (Int, Int)
resized (width, height) = (710, round $ fi height * 710.0 / fi width)
where where
fi :: Int -> Float resized :: (Int, Int) -> (Int, Int)
fi = fromIntegral resized (width, height) =
(thumbWidth, round $ fi height * fi thumbWidth / fi width)
where
fi :: Int -> Float
fi = fromIntegral
renderVisual :: Text -> [Timestamped ((Int, Int), FilePath)] -> Html () renderVisual :: Text -> [Timestamped ((Int, Int), FilePath)] -> Html ()
renderVisual txt imgs = renderVisual txt imgs =
outerWith def {title = "visual"} do outerWith def {title = "visual"} do
toHtmlRaw txt toHtmlRaw txt
hr_ [] hr_ []
section_ $ forM_ imgs \ (Timestamped _ ((width, height), p)) -> section_ [class_ "visual"] $
figure_ $ img_ forM_ imgs \ (Timestamped _ ((width, height), p)) ->
[ src_ (fromString p) figure_ $ a_ [href_ (fromString (replaceExtensions p "webp"))] $ img_
, width_ (fromString $ show width) [ src_ (fromString p)
, height_ (fromString $ show height) , width_ (fromString $ show width)
, loading_ "lazy" ] , height_ (fromString $ show height)
, loading_ "lazy" ]
processMagick :: FilePath -> Task IO FilePath
processMagick = callCommandWith
(\a b -> "convert -resize 710x " <> a <> " " <> b)
(-<.> "thumb.webp")