blob: 554f692d655529cb9c6c2196d866a29b1f81fda0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<script type="application/ld+json" id="schema-data">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": {{ partial "title.html" . }},
"url": {{ site.BaseURL }},
"keywords": {{ partial "keywords.html" . }},
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": {{ printf "%s?q={search_term_string}" (ref . "search") }}
},
"query-input": "required name=search_term_string"
}
}
</script>
|