diff --git a/README.md b/README.md index ff8487f..58b17fa 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,15 @@ 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 +* Alternatively, verify ownership with several services at once using the following format: + +```yml +webmaster_verifications: + google: 1234 + bing: 1234 + alexa: 1234 + yandex: 1234 +``` The SEO tag will respect the following YAML front matter if included in a post, page, or document: diff --git a/lib/template.html b/lib/template.html index 11847c9..1c9f3ea 100644 --- a/lib/template.html +++ b/lib/template.html @@ -172,10 +172,24 @@ {% endif %} {% endif %} -{% if site.google_site_verification %} +{% if site.webmaster_verifications %} + {% if site.webmaster_verifications.google %} + + {% endif %} + {% if site.webmaster_verifications.bing %} + + {% endif %} + {% if site.webmaster_verifications.alexa %} + + {% endif %} + {% if site.webmaster_verifications.yandex %} + + {% endif %} +{% elsif site.google_site_verification %} {% endif %} +