Add support for Bing and Yandex webmaster tools. Closes #147
This commit is contained in:
parent
72f0432c25
commit
0dea0333d2
|
@ -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:
|
||||
|
||||
|
|
|
@ -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">
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue