diff --git a/src/Templates.hs b/src/Templates.hs index b2f0d52..047ec8a 100644 --- a/src/Templates.hs +++ b/src/Templates.hs @@ -39,14 +39,6 @@ property_ = makeAttribute "property" toLink :: FilePath -> Html () -> Html () toLink url = a_ [ href_ (fromString $ "/" <> url) ] -renderVisual :: Text -> [Timestamped FilePath] -> Html () -renderVisual txt imgs = - outer do - toHtmlRaw txt - hr_ [] - section_ $ forM_ imgs \ (Timestamped _ p) -> - figure_ $ img_ [ src_ (fromString p), loading_ "lazy" ] - renderProject :: Project -> [(String, FilePath)] -> Text -> Html () renderProject (project@Project{title,..}) children content = outerWith def { Config.title = fromString title @@ -149,4 +141,3 @@ outerWith SiteConfig{title,..} content = doctypehtml_ do a_ [ href_ "https://instagram.com/ba.bou.m/" ] "instagram" " ยท " a_ [ href_ "/atom.xml" ] "feed" - diff --git a/src/Visual.hs b/src/Visual.hs index 26f5c61..8e80980 100644 --- a/src/Visual.hs +++ b/src/Visual.hs @@ -1,7 +1,9 @@ module Visual (build) where +import Config import Common -import Templates +import Templates (outerWith, loading_) +import Lucid build :: Task IO () build = do @@ -14,3 +16,11 @@ build = do watch pictures $ match_ "./visual.rst" do intro <- compilePandoc write "visual.html" $ renderVisual intro (recentFirst pictures) + +renderVisual :: Text -> [Timestamped FilePath] -> Html () +renderVisual txt imgs = + outerWith def {title = "visual"} do + toHtmlRaw txt + hr_ [] + section_ $ forM_ imgs \ (Timestamped _ p) -> + figure_ $ img_ [ src_ (fromString p), loading_ "lazy" ]