Add structured data

This commit is contained in:
Seth Vargo 2016-01-24 13:11:58 -05:00
parent 631036caea
commit cd4a70f846
3 changed files with 15 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -105,5 +105,6 @@
<%= javascript_include_tag "application" %>
<%= partial "layouts/google-analytics.html" %>
<%= partial "layouts/adroll.html" %>
<%= partial "layouts/structured_data.html" %>
</body>
</html>

View File

@ -0,0 +1,14 @@
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Product",
"name": "Packer",
"alternateName": "Packer by HashiCorp",
"manufacturer": "HashiCorp",
"url": "https://www.packer.io",
"logo": "<%= File.join(base_url, image_path("logo_large.png")) %>",
"sameAs": [
"https://github.com/mitchellh/packer"
]
}
</script>