selfprivacy.org/_vendor/github.com/google/docsy/layouts/_default/search.html

22 lines
562 B
HTML
Raw Normal View History

2024-04-25 22:15:39 +00:00
{{ define "main" -}}
2024-04-21 23:04:16 +00:00
<section class="row td-search-result">
<div class="col-12 col-md-8 offset-md-2">
2024-04-25 22:15:39 +00:00
<h2 class="ms-4">{{ .Title }}</h2>
{{ with .Site.Params.gcs_engine_id -}}
2024-04-21 23:04:16 +00:00
<script>
(function() {
var cx = '{{ . }}';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = 'https://cse.google.com/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
2024-04-25 22:15:39 +00:00
<gcse:searchresults-only></gcse:searchresults-only>
{{ end -}}
2024-04-21 23:04:16 +00:00
</div>
</section>
2024-04-25 22:15:39 +00:00
{{ end }}