summaryrefslogtreecommitdiff
path: root/themes/new_theme/layouts/partials/widgets/google_site_search.html
blob: 6221b27c16f5c69c502389be05b464224637f591 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{- if .Site.Params.widgets.search }}
<h4 class="widget__title">Search</h4>
<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="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 }}