diff options
-rw-r--r-- | tissue/web/server.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tissue/web/server.scm b/tissue/web/server.scm index 0002866..54f0cb1 100644 --- a/tissue/web/server.scm +++ b/tissue/web/server.scm @@ -179,7 +179,8 @@ operators " (p "Found an estimated " (strong ,(string-append (number->string estimated-matches)) " results")) - (ul ,@results)))) + (ul (@ (class "search-results")) + ,@results)))) (define (query-parameters query) "Return an association list of query parameters in web QUERY string." |