diff options
-rw-r--r-- | mumi/web/view/html.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mumi/web/view/html.scm b/mumi/web/view/html.scm index ec49549..40d9048 100644 --- a/mumi/web/view/html.scm +++ b/mumi/web/view/html.scm @@ -84,10 +84,9 @@ "Now with even more " (span (@ (class "lambda")) "λ") "! ") (p "This is free software. Download the " (a (@ (href "https://git.elephly.net/software/mumi.git")) - "source code here") "."))) - (script - (@ (type "text/javascript") - (src "/js/sort-table.js")))))) + "source code here") ".")) + (script + (@ (src "/js/sort-table.js"))))))) (define* (search-form #:key (standalone? #f) (text "")) `(form (@ (id "search") |