Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcia Ramos <virtua.creative@gmail.com>2018-01-30 17:29:11 +0300
committerMarcia Ramos <virtua.creative@gmail.com>2018-01-30 17:29:11 +0300
commit767c0b7d18004d9c76ca964b60e83b24bd888e55 (patch)
tree12d901bc63282846faeac18adedf5d71e9a8ca28 /layouts/head.html
parentf7854e2d63fc05b72d05455c1da15dec5e244097 (diff)
add schema.org Organization microdata
Diffstat (limited to 'layouts/head.html')
-rw-r--r--layouts/head.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/layouts/head.html b/layouts/head.html
index 0df161e6..7a04df2a 100644
--- a/layouts/head.html
+++ b/layouts/head.html
@@ -6,6 +6,7 @@
<% else %>
<meta name="description" content="Documentation for GitLab Community Edition, GitLab Enterprise Edition, Omnibus GitLab, and GitLab Runner.">
<% end %>
+
<link rel="stylesheet" href="<%= @items['/assets/stylesheets/bootstrap.min.*'].path %>">
<link rel="stylesheet" href="<%= @items['/assets/stylesheets/font-awesome.min.*'].path %>">
<link rel="stylesheet" href="<%= @items['/assets/stylesheets/stylesheet.*'].path %>">
@@ -20,4 +21,40 @@
<!-- you don't need to keep this, but it's cool for stats! -->
<meta name="generator" content="Nanoc <%= Nanoc::VERSION %>">
+ <script type="application/json">
+ {
+ "@context":"http://schema.org",
+ "@type":"Organization",
+ "name":"GitLab",
+ "legalName":"GitLab Inc.",
+ "url":"http://about.gitlab.com",
+ "logo":"https://gitlab.com/gitlab-com/gitlab-artwork/raw/master/logo/logo.png",
+ "foundingDate":"2011",
+ "founders":[
+ {
+ "@type":"Person",
+ "name":"Sid Sijbrandij"
+ },
+ {
+ "@type":"Person",
+ "name":"Dmitriy Zaporozhets"
+ }],
+ "address":
+ {
+ "@type":"PostalAddress",
+ "streetAddress":"1233 Howard St 2F",
+ "addressLocality":"San Francisco",
+ "addressRegion":"CA",
+ "postalCode":"94103",
+ "addressCountry":"USA"
+ },
+ "sameAs":[
+ "https://www.facebook.com/gitlab",
+ "https://twitter.com/gitlab",
+ "https://www.linkedin.com/company/gitlab-com",
+ "https://plus.google.com/107491817347842790515/",
+ "https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg"
+ ],
+ }
+ </script>
</head>