From: sabadev Date: Tue, 16 Mar 2021 04:29:04 +0000 (-0400) Subject: Declared a function that receives HTML and produces HTML that follows the website... X-Git-Url: http://sabadev.xyz:4321/?a=commitdiff_plain;h=8c2643461ed657284a728260071569df019988c8;p=website.git Declared a function that receives HTML and produces HTML that follows the website's template. --- diff --git a/src/Server.hs b/src/Server.hs index 0caf0a0..c98da1a 100644 --- a/src/Server.hs +++ b/src/Server.hs @@ -39,3 +39,6 @@ darkTheme = undefined lightTheme :: Handler T.Text lightTheme = undefined + +htmlContainer :: Html a -> Html a +htmlContainer = id