diff options
Diffstat (limited to 'home/src/components.clj')
| -rw-r--r-- | home/src/components.clj | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/home/src/components.clj b/home/src/components.clj new file mode 100644 index 0000000..d4d30a0 --- /dev/null +++ b/home/src/components.clj @@ -0,0 +1,50 @@ +(ns components + (:require [borkdude.html :refer [html]] + [highlight :refer [highlight-styles]])) + +(defn template [body] + (html + [:html + {:style {:font-family "monospace"}} + [:head + [:style + [:$ + (str + (highlight-styles :code "default") + (highlight-styles :output "default") + "li { line-height: 1.6; }" + "p { line-height: 1.6; font-family: Palatino; }" + ".page-body p { max-width: 44em; }" + ".page-body blockquote { max-width: 44em; }" + ".highlight { padding: 1px; padding-left: 6px; }")]] + [:meta {:charset "UTF-8"}]] + [:body + [:<> body] + [:footer + [:br] + [:br] + [:p "---"] + [:span + [:a {:href "https://git.jakezerrer.com/jakezerrer.git/"} "page src"] + " | " + [:a {:href "mailto:contact@jakezerrer.com?subject=Blog post"} "contact me"]]]]])) + +(defn page [body] + (template + (html + [:<> + [:p [:a {:href "/"} "< home"]] + [:div {:class "page-body"} + body]]))) + +(defn blockquote [body [from to]] + (html + [:figure + {:style {:margin-left "0" :margin-bottom "2"}} + [:blockquote + body] + [:figcaption + (html + (if (nil? to) + (html [:<> (str "p. " from)]) + (html [:<> (str "pp. " from "-" to)])))]])) |
