add google site verification meta tag
This commit is contained in:
parent
d73dc77d3f
commit
594d99f752
|
@ -2,7 +2,7 @@
|
|||
|
||||
A Jekyll plugin to add metadata tags for search engines and social networks to better index and display your site's content.
|
||||
|
||||
[![Gem Version](https://badge.fury.io/rb/jekyll-seo-tag.svg)](https://badge.fury.io/rb/jekyll-seo-tag) [![Build Status](https://travis-ci.org/benbalter/jekyll-seo-tag.svg)](https://travis-ci.org/benbalter/jekyll-seo-tag)
|
||||
[![Gem Version](https://badge.fury.io/rb/jekyll-seo-tag.svg)](https://badge.fury.io/rb/jekyll-seo-tag) [![Build Status](https://travis-ci.org/benbalter/jekyll-seo-tag.svg)](https://travis-ci.org/benbalter/jekyll-seo-tag)
|
||||
|
||||
## What it does
|
||||
|
||||
|
@ -64,6 +64,7 @@ The SEO tag will respect any of the following if included in your site's `_confi
|
|||
* `type` - Either `person` or `organization` (defaults to `person`)
|
||||
* `name` - If the user or organization name differs from the site's name
|
||||
* `links` - An array of links to social media profiles.
|
||||
* `google_site_verification` for verifying ownership via Google webmaster tools
|
||||
|
||||
The SEO tag will respect the following YAML front matter if included in a post, page, or document:
|
||||
|
||||
|
|
|
@ -110,6 +110,10 @@
|
|||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% if site.google_site_verification %}
|
||||
<meta name="google-site-verification" content="{{ site.google_site_verification }}" />
|
||||
{% endif %}
|
||||
|
||||
{% if site.logo %}
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue