summaryrefslogtreecommitdiff
path: root/themes/new_theme/layouts/partials/widgets/google_site_search.html
blob: 352adc7982dddd60c3d9a84bed506a11f2d6e50c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{- if .Site.Params.widgets.search }}
<div class="widget-search widget">
	<form class="widget-search__form" role="search" method="get" action="//google.com/search">
		<label>
			<span class="screen-reader-text">Search for:</span>
			<input class="widget-search__field" type="search" placeholder="GOOGLE SEARCH..." value="" name="q">
		</label>
		<input class="widget-search__submit" type="submit" value="Search">
		<input type="hidden" name="sitesearch" value="{{ .Site.BaseURL }}" />
	</form>
</div>
{{- end }}