1
0
Fork 0
website/src/site/core.clj

8 lines
151 B
Clojure
Raw Normal View History

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