summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2015-04-13 15:07:49 -0500
committerDan McGee <dan@archlinux.org>2015-04-13 15:07:49 -0500
commit0fd1bc9690ce7b1be70fcc2a3fc845549da7d660 (patch)
treeab909956f817d7ed38d6e29ccc8c785a35db6685 /templates
parent73db0d8ac2cd0bb7cf5109e38e2be96d0467d830 (diff)
downloadarchweb-0fd1bc9690ce7b1be70fcc2a3fc845549da7d660.tar.gz
archweb-0fd1bc9690ce7b1be70fcc2a3fc845549da7d660.zip
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.html12
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>