1
0
Fork 0
website/src/site/core.clj
2019-10-27 17:20:04 -04:00

8 lines
151 B
Clojure

(ns site.core
(:require [hiccup.page :as hp]))
(defn page [data]
(hp/html5
[:div {:style "max-width: 600px;"}
(-> data :entry :content)]))