web: focus on searchbox for '/' keypress

Change-Id: Idd9b88bac4371438e289bce8d6072e61381db9d0
diff --git a/web/templates.go b/web/templates.go
index 310101f..7d07daa 100644
--- a/web/templates.go
+++ b/web/templates.go
@@ -135,6 +135,15 @@
     </div>
   </div>
 </nav>
+<script>
+document.onkeydown=function(e){
+  var e = e || window.event;
+  if (e.key == "/") {
+    document.getElementById("navsearchbox").focus();
+    return false;
+  }
+};
+</script>
 `,
 	// search box for the entry page.
 	"search": `