diff options
author | Dan McGee <dan@archlinux.org> | 2015-04-13 15:07:49 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2015-04-13 15:07:49 -0500 |
commit | 0fd1bc9690ce7b1be70fcc2a3fc845549da7d660 (patch) | |
tree | ab909956f817d7ed38d6e29ccc8c785a35db6685 /templates | |
parent | 73db0d8ac2cd0bb7cf5109e38e2be96d0467d830 (diff) |
Add JSON-LD search engine configuration
Implemented as documented here:
http://googlewebmastercentral.blogspot.com/2014/09/improved-sitelinks-search-box.html
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html index f6fe99e5..fae2037e 100644 --- a/templates/base.html +++ b/templates/base.html @@ -81,6 +81,18 @@ the exclusive licensee of Linus Torvalds, owner of the mark on a world-wide basis.</p> </div> </div> + <script type="application/ld+json"> + { + "@context": "http://schema.org", + "@type": "WebSite", + "url": "{{ domain }}/", + "potentialAction": { + "@type": "SearchAction", + "target": "{{ domain }}/packages/?q={search_term}", + "query-input": "required name=search_term" + } + } + </script> {% block script_block %}{% endblock %} </body> </html> |