Merge pull request #4810 from hashicorp/sethvargo/sdata

Add structured data to website
This commit is contained in:
James Nugent 2016-01-24 16:08:31 -06:00
commit 5f8b0e8b89
2 changed files with 15 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

View File

@ -69,5 +69,20 @@ window.onload = function(){
<%= javascript_include_tag "application" %>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Product",
"name": "Terraform",
"alternateName": "Terraform by HashiCorp",
"manufacturer": "HashiCorp",
"url": "https://www.terraform.io",
"logo": "<%= File.join(base_url, image_path("logo_large.png")) %>",
"sameAs": [
"https://github.com/hashicorp/terraform"
]
}
</script>
</body>
</html>