git.fiddlerwoaroof.com
Browse code

bug: make it actually work

Ed Langley authored on 22/07/2020 21:46:22
Showing 2 changed files
1 1
deleted file mode 100644
... ...
@@ -1,7 +0,0 @@
1
-(page "index.html")
2
-
3
-(html
4
-  (head
5
-    (link :href "app.css" :rel "stylesheet" :type "text/css"))
6
-  (body
7
-    (h1 "Hello, Hoplon!")))
8 0
new file mode 100644
... ...
@@ -0,0 +1,10 @@
1
+(ns ^{:hoplon/page "index.html"} pages.index
2
+  (:require [hoplon.core  :as h :refer [div ul li html link head title body h1 span p button text]]
3
+            [javelin.core :as j :refer [cell cell=]]
4
+            [hoplon.jquery]))
5
+
6
+(html
7
+  (head
8
+    (link :href "app.css" :rel "stylesheet" :type "text/css"))
9
+  (body
10
+    (h1 "Hello, Hoplon!")))