This commit is contained in:
trisua 2025-05-30 20:29:49 -04:00
commit be90578707
10 changed files with 1092 additions and 0 deletions

15
examples/boilerplate.lisp Normal file
View 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!"))))