diff --git a/examples/hello-css.css b/examples/hello-css.css new file mode 100644 index 0000000..95f2eae --- /dev/null +++ b/examples/hello-css.css @@ -0,0 +1,3 @@ +h1 { + background: blue +} diff --git a/examples/hello-css.rkt b/examples/hello-css.rkt new file mode 100644 index 0000000..ba1c99e --- /dev/null +++ b/examples/hello-css.rkt @@ -0,0 +1,8 @@ +#lang planet dyoo/whalesong/base +(require (planet dyoo/whalesong/web-world) + (planet dyoo/whalesong/resource)) + +(define-resource "hello-css.css") +(define-resource "hello-css-main.html") + +(big-bang 0 (initial-view hello-css-main.html))