(ns webapp.core (:require [compojure.core :refer [defroutes GET]] [org.httpkit.server :as http] [hiccup.core :as hiccup] [net.cgrand.enlive-html :refer [deftemplate] :as enlive])) (deftemplate root "templates/index.html" [] [:h1] (enlive/append "Hello, Enlive!")) (defroutes app (GET "/" [] (root)))