X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=mudsync%2Fnetworking.scm;h=d62568b36f72da0568b854542ec33cba08b8262a;hb=8f1cfd1d4bcc9ecd7434e4d1f352d75ac371794f;hp=e553e01e811dfe85a55de611722966afae6b2dc7;hpb=58fc6aec304928bf6080aa7988e870d85c4ade26;p=mudsync.git diff --git a/mudsync/networking.scm b/mudsync/networking.scm index e553e01..d62568b 100644 --- a/mudsync/networking.scm +++ b/mudsync/networking.scm @@ -210,18 +210,17 @@ (define (view:main-display request body) (define one-entry - '(div (@ (class "stream-entry")) - (p "This is an entry!") - (p "Let's try a few paragraphs") - (p "okay?"))) + '(div (@ (class "stream-entry")) + (p (b "") " Wow, it's so shiny!"))) (define body-tmpl `((div (@ (id "stream-metabox")) (div (@ (id "stream")) - ,@(map (const one-entry) (iota 10)))) + ,@(map (const one-entry) (iota 25)) + (div (@ (class "stream-entry")) + (p (b "") " Last one!")))) (div (@ (id "input-metabox")) - (p "test test") - (input (@ (id "input")))))) + (input (@ (id "main-input")))))) (define (main-tmpl) `(html (@ (xmlns "http://www.w3.org/1999/xhtml"))