2019-10-27 16:20:04 -05:00
|
|
|
(ns site.core
|
2020-05-12 03:24:27 -05:00
|
|
|
(:require [hiccup.page :as hp]
|
|
|
|
[garden.core :as gc]))
|
|
|
|
|
|
|
|
(def textcolor-main "rgba(0, 0, 0, 0.87)")
|
|
|
|
|
|
|
|
(def css
|
|
|
|
(gc/css
|
|
|
|
[:body
|
|
|
|
{:max-width "600px"
|
|
|
|
:color textcolor-main}]
|
|
|
|
))
|
2019-10-27 16:20:04 -05:00
|
|
|
|
|
|
|
(defn page [data]
|
|
|
|
(hp/html5
|
2020-05-12 03:24:27 -05:00
|
|
|
[:head [:style css]]
|
|
|
|
[:div
|
2019-10-27 16:20:04 -05:00
|
|
|
(-> data :entry :content)]))
|