Skip to content

Commit

Permalink
Ran HTML through validator
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshfisher committed Oct 29, 2012
1 parent 13c51bc commit 3d05bdd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions EducationSection.hs
Expand Up @@ -7,10 +7,10 @@ import Links (mkLink, Link(LinkCRGS, LinkGreyFriars))
educationSection :: (ArrowXml a) => a n XmlTree
educationSection = section [cls "educationSection"]
[ h2 "Education"
, mkelem "table" [cls "firstColFixedWidth", sattr "summary" "Institutions James Fisher has studied at, listed in descending order of year (i.e., most recent first)"]
, mkelem "table" [cls "firstColFixedWidth"]
[ mk "tbody" $ trs [ msc, ba, aLevels, gcses ] ]
, h3 "Other courses"
, mkelem "table" [cls "firstColFixedWidth", sattr "summary" "Institutions James Fisher has studied at, listed in descending order of year (i.e., most recent first)"]
, mkelem "table" [cls "firstColFixedWidth"]
[ mk "tbody" $ trs
[ attrVal [txt "Sep.–Nov. 2012"] []
[ q "Functional Programming Principles in Scala"
Expand Down
6 changes: 3 additions & 3 deletions ExperienceSection.hs
Expand Up @@ -7,8 +7,8 @@ import Links (mkLink, Link(LinkYUDU, LinkSoftwire, LinkJava, LinkEnterpriseJavaB
experienceSection :: (ArrowXml a) => a n XmlTree
experienceSection = section [cls "experienceSection"]
[ h2 "Experience"
, mkelem "table" [cls "firstColFixedWidth", sattr "summary" "Jobs that James Fisher has done, listed in descending order of year (i.e., most recent first)"]
[ mk "body" $ trs [ yudu, lm, gilgilTrust, pembrokeHouse, hsk, caringHomesDB, caringHomesVarious ]
, mkelem "table" [cls "firstColFixedWidth"]
[ mk "tbody" $ trs [ yudu, lm, gilgilTrust, pembrokeHouse, hsk, caringHomesDB, caringHomesVarious ]
]
]

Expand Down Expand Up @@ -39,7 +39,7 @@ lm =
, txt " The follies of schematizing, sorting, and cross-referencing paperwork led me towards the real power of the computer."
]
, [ strong "Web design and maintenance", txt " for "
, mkelem "link" [sattr "href" "http://www.lexdenmontessori.com"] [txt "www.", strong "lexdenmontessori.com"]
, mkelem "a" [sattr "href" "http://www.lexdenmontessori.com"] [txt "www.", strong "lexdenmontessori.com"]
, txt "."
]
]
Expand Down
2 changes: 1 addition & 1 deletion TopSection.hs
Expand Up @@ -6,7 +6,7 @@ import Common (h2, ul, strong, link, cls, section, attrVal, email, obscure, csv,
topSection :: (ArrowXml a) => a n XmlTree
topSection = section (item "http://data-vocabulary.org/Person")
[ htmlSpan [sattr "style" "display: none;", prop "name"] [txt "James Harrison Fisher"]
, mkelem "table" [cls "firstColFixedWidth", sattr "summary" "Quick-reference attributes and values of James Harrison Fisher"]
, mkelem "table" [cls "firstColFixedWidth"]
[ mk "tbody" $ trs
[ attrVal [txt "Birth date"] [] [txt "October 1987"]
, attrVal [txt "Address"] ([prop "address"]++(item "http://data-vocabulary.org/Address")) $ csv
Expand Down

0 comments on commit 3d05bdd

Please sign in to comment.