Index: snippets-html.rkt ================================================================== --- snippets-html.rkt +++ snippets-html.rkt @@ -5,10 +5,11 @@ ;; Provides functions for displaying content in HTML templates. (require pollen/core pollen/template pollen/decode + pollen/private/version racket/string racket/function racket/list txexpr openssl/sha1 @@ -30,10 +31,11 @@ (define (html$-page-head [title #f]) ◊string-append{ ◊if[title title ""] + }) (define (html$-page-body-open [class ""]) (define body-class (if (non-empty-string? class) (format " class=\"~a\"" class) ""))