moved visual template to Visual.hs

This commit is contained in:
flupe 2020-09-27 02:00:56 +02:00
parent 9598b36d69
commit 7c7aeae4e1
2 changed files with 11 additions and 10 deletions

View File

@ -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"

View File

@ -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" ]