Add basic Google Custom Search to Hugo docs
authorAnthony Fok <foka@debian.org>
Thu, 8 Jan 2015 07:11:43 +0000 (00:11 -0700)
committerAnthony Fok <foka@debian.org>
Thu, 8 Jan 2015 07:17:01 +0000 (00:17 -0700)
Fixes #753

docs/layouts/partials/google-cse.html [new file with mode: 0644]
docs/layouts/partials/header.html
docs/static/css/style.css

diff --git a/docs/layouts/partials/google-cse.html b/docs/layouts/partials/google-cse.html
new file mode 100644 (file)
index 0000000..666639f
--- /dev/null
@@ -0,0 +1,13 @@
+<script>
+  (function() {
+    var cx = '004940163756227230940:9tdbvl9bwk4';
+    var gcse = document.createElement('script');
+    gcse.type = 'text/javascript';
+    gcse.async = true;
+    gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
+        '//www.google.com/cse/cse.js?cx=' + cx;
+    var s = document.getElementsByTagName('script')[0];
+    s.parentNode.insertBefore(gcse, s);
+  })();
+</script>
+<gcse:search></gcse:search>
index bac5d0739089ed0ab807057c50338223442c96d2..d2a5ec0f75f51def3afd84c0ca23f5418758b23e 100644 (file)
@@ -81,3 +81,4 @@
                               <!--<h3>{{.Title}}</h3>-->
                           <!--</header>-->
                     <div class="panel-body">
+{{ partial "google-cse.html" . }}
index a19a9b1178da574fd56fcdfbdb8a9c7671871e57..43fef425032f170861299dfcccd3aacc82b3ef1e 100755 (executable)
@@ -431,3 +431,29 @@ h1.top-menu {
 .navigation:hover {
     background-color: rgba(0,0,0,0.1);
 }
+
+/* Google Custom Search box */
+
+input.gsc-input,
+.gsc-input-box,
+.gsc-input-box-hover,
+.gsc-input-box-focus,
+.gsc-search-button,
+.gsc-inline-block {
+  box-sizing: content-box;
+  line-height: normal;
+}
+
+.gsc-control-cse {
+  padding: 0.1em 0 0.5em 1em !important;
+  width: 16em !important;
+  float: right;
+}
+
+input.gsc-search-button-v2 {
+  padding: 6px 12px !important;
+}
+
+.gsc-search-box-tools .gsc-search-box .gsc-input {
+  padding-right: 1px !important;
+}