Skip to content

Commit 2bb691d

Browse files
committed
feat(SEO): Add header and documentation for Claiming Website on Yandex
Signed-off-by: Pablo Iranzo Gómez <Pablo.Iranzo@gmail.com>
1 parent 1da552c commit 2bb691d

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

documentation/content/Analytics SEO SMO/claim-site.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
Title: Claim website on Google and Bing
3-
Tags: google, bing, crawler
2+
Title: Claim website on Google, Yandex and Bing
3+
Tags: google, bing, yandex, crawler
44
Category: Analytics, SEO and SMO
55
Date: 2019-06-27
66
Slug: website-claim
@@ -10,8 +10,7 @@ Summary: Easily insert headers to claim website
1010
Keywords:
1111
---
1212

13-
For submitting a website and sitemap to Google Search Console or Bing Webmaster tools
14-
we've to consider some steps.
13+
For submitting a website and sitemap to Google Search Console or Bing Webmaster tools or Yandex Webmaster we've to consider some steps.
1514

1615
One of those steps is to claim the website ownership.
1716

@@ -33,11 +32,13 @@ headers:
3332

3433
- `CLAIM_GOOGLE`
3534
- `CLAIM_BING`
35+
- `CLAIM_YANDEX`
3636

3737
Each one of those should be filled according to the values provided by
3838
Google/Bing on their respective websites for webmasters:
3939

4040
- [Google Search Console](https://www.google.com/webmasters/tools/dashboard?pli=1)
4141
- [Bing Webmaster tools](https://www.bing.com/webmaster/configure/verify/ownership)
42+
- [Yandex Webmaster](https://webmaster.yandex.com/sites/)
4243

4344
Once configured and when site is regenerated, the header should be there.

templates/_includes/claim_yandex.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<meta name="yandex-verification" content="{{ CLAIM_YANDEX }}" />

templates/base.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
{% endif %}
1010
{% if CLAIM_BING %}
1111
{% include '_includes/claim_bing.html' with context %}
12-
12+
{% endif %}
13+
{% if CLAIM_YANDEX %}
14+
{% include '_includes/claim_yandex.html' with context %}
1315
{% endif %}
1416
{% if article and article.author %}
1517
<meta name="author" content="{{ article.author }}" />

0 commit comments

Comments
 (0)