google_custom_search.html 528 B

1234567891011121314
  1. {% if GOOGLE_CUSTOM_SEARCH %}
  2. <script>
  3. (function() {
  4. var cx = '{{ GOOGLE_CUSTOM_SEARCH }}';
  5. var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true;
  6. gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
  7. '//www.google.com/cse/cse.js?cx=' + cx;
  8. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s);
  9. })();
  10. </script>
  11. <div id="google-custom-search" class="nav">
  12. <gcse:search></gcse:search>
  13. </div>
  14. {% endif %}