Add support for Bing and Yandex webmaster tools. Closes #147

This commit is contained in:
Josh Habdas 2017-01-12 14:22:00 +08:00
parent 72f0432c25
commit 0dea0333d2
No known key found for this signature in database
GPG Key ID: BB7367EE9A70A631
2 changed files with 8 additions and 0 deletions

View File

@ -92,6 +92,8 @@ The SEO tag will respect any of the following if included in your site's `_confi
```
* `google_site_verification` for verifying ownership via Google webmaster tools
* `bing_site_verification` for verifying ownership via Bing webmaster tools
* `yandex_site_verification` for verifying ownership via Yandex webmaster tools
The SEO tag will respect the following YAML front matter if included in a post, page, or document:

View File

@ -175,6 +175,12 @@
{% if site.google_site_verification %}
<meta name="google-site-verification" content="{{ site.google_site_verification }}" />
{% endif %}
{% if site.bing_site_verification %}
<meta name="msvalidate.01" content="{{ site.bing_site_verification }}">
{% endif %}
{% if site.yandex_site_verification %}
<meta name="yandex-verification" content="{{ site.yandex_site_verification }}">
{% endif %}
<script type="application/ld+json">
{