moved visual template to Visual.hs
This commit is contained in:
parent
9598b36d69
commit
7c7aeae4e1
|
@ -39,14 +39,6 @@ property_ = makeAttribute "property"
|
||||||
toLink :: FilePath -> Html () -> Html ()
|
toLink :: FilePath -> Html () -> Html ()
|
||||||
toLink url = a_ [ href_ (fromString $ "/" <> url) ]
|
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 -> [(String, FilePath)] -> Text -> Html ()
|
||||||
renderProject (project@Project{title,..}) children content =
|
renderProject (project@Project{title,..}) children content =
|
||||||
outerWith def { Config.title = fromString title
|
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_ "https://instagram.com/ba.bou.m/" ] "instagram"
|
||||||
" · "
|
" · "
|
||||||
a_ [ href_ "/atom.xml" ] "feed"
|
a_ [ href_ "/atom.xml" ] "feed"
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
module Visual (build) where
|
module Visual (build) where
|
||||||
|
|
||||||
|
import Config
|
||||||
import Common
|
import Common
|
||||||
import Templates
|
import Templates (outerWith, loading_)
|
||||||
|
import Lucid
|
||||||
|
|
||||||
build :: Task IO ()
|
build :: Task IO ()
|
||||||
build = do
|
build = do
|
||||||
|
@ -14,3 +16,11 @@ build = do
|
||||||
watch pictures $ match_ "./visual.rst" do
|
watch pictures $ match_ "./visual.rst" do
|
||||||
intro <- compilePandoc
|
intro <- compilePandoc
|
||||||
write "visual.html" $ renderVisual intro (recentFirst pictures)
|
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" ]
|
||||||
|
|
Loading…
Reference in New Issue