Initial
This commit is contained in:
commit
be90578707
10 changed files with 1092 additions and 0 deletions
15
examples/boilerplate.lisp
Normal file
15
examples/boilerplate.lisp
Normal file
|
@ -0,0 +1,15 @@
|
|||
('"<!DOCTYPE html>") ; using a raw string for the doctype is fine
|
||||
(html
|
||||
(head
|
||||
; everything that belongs in the head element
|
||||
(title'"Document")
|
||||
|
||||
(meta (: "charset" "UTF-8"))
|
||||
(meta (: "name" "viewport") (: "content" "width=device-width, initial-scale=1.0"))
|
||||
(meta (: "http-equiv" "X-UA-Compatible") (: "content" "ie=edge"))
|
||||
|
||||
(link (: "rel" "stylesheet") (: "href" "#")))
|
||||
|
||||
(body
|
||||
; the actual body only starts here
|
||||
(span (: "style" "color: red") ('"Hello, world!"))))
|
Loading…
Add table
Add a link
Reference in a new issue