Upgrade to nick_site commit f981fa57, adds alerts and inactive sidebar option
[ndcode_site.git] / search / index.html.jst
index a066789..bbb508d 100644 (file)
@@ -42,9 +42,9 @@ return async env => {
 
       await breadcrumbs(env, _out)
 
-      h4 {
+      h4/*.mt-3*/ {
         'Query: '
-        strong {`${query}`}
+        b {`${query}`}
       }
 
       if (search.results.length) {
@@ -53,10 +53,10 @@ return async env => {
         ol(start=first + 1) {
           for (let i = 0; i < search.results.length; ++i) {
             let page = search.results[i].auxiliary
-            li {
+            li.mb-3 {
               a(href=page) {`${await breadcrumbs_str(page)}`}
               br {}
-              p {_out.push(search.results[i].summary)} // note: contains HTML
+              _out.push(search.results[i].summary) // note: contains HTML
             }
           }
         }