From 0dea0333d208ca36e2f04c50be0e7d4425ed68d4 Mon Sep 17 00:00:00 2001 From: Josh Habdas Date: Thu, 12 Jan 2017 14:22:00 +0800 Subject: [PATCH 1/2] Add support for Bing and Yandex webmaster tools. Closes #147 --- README.md | 2 ++ lib/template.html | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/README.md b/README.md index ff8487f..550a9b6 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/lib/template.html b/lib/template.html index 11847c9..dfd3ec1 100644 --- a/lib/template.html +++ b/lib/template.html @@ -175,6 +175,12 @@ {% if site.google_site_verification %} {% endif %} +{% if site.bing_site_verification %} + +{% endif %} +{% if site.yandex_site_verification %} + +{% endif %}