Skip to content

Commit 8dbcac0

Browse files
committed
Added ids for divs; added day job link.
1 parent e66a636 commit 8dbcac0

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

main.scm

+5-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
#:title my-title
77
#:css '("/css/main.css")
88
(** `(h1 ,my-title)
9-
`(div ,things-I-have-done)
10-
`(div ,things-I-want-to-do)
11-
`(div ,me-elswhere-on-the-internet)))
9+
`(div ((id "things_done")) ,things-I-have-done)
10+
`(div ((id "things_todo")) ,things-I-want-to-do)
11+
`(div ((id "me")) ,me-elswhere-on-the-internet)))
1212

1313
(define things-I-have-done
1414
(**
@@ -38,6 +38,7 @@
3838
'(h2 "Me, elsewhere on the Internet")
3939
'(ul
4040
(li (a ((href "http://flickr.com/photos/25445776@N08/") (target "_blank")) "Flickr."))
41-
(li (a ((href "http://twitter.com/shaunak") (target "_blank")) "Twitter.")))))
41+
(li (a ((href "http://twitter.com/shaunak") (target "_blank")) "Twitter."))
42+
(li (a ((href "http://news.yahoo.com") (target "_blank")) "My day job.")))))
4243

4344
(define my-title "Shaunak's home on the Internet")

0 commit comments

Comments
 (0)