Skip to content

Commit 832d5ce

Browse files
committed
add alex, bing, google, yandex site verifications to meta
1 parent 8d7bcf1 commit 832d5ce

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

_config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ analytics :
2424
tracking_id : 'UA-43807579-1'
2525
domain : www.hacktoolkit.com
2626

27+
verifications :
28+
alexa : ha120wncwHtU4dhNYW5TlMgVlco
29+
bing : 083FDC17F2126892E9A310CDA4132FF0
30+
google : OaOHJNILNNt0nQ4G1eyD71yLV4BvO8V6aoL3LAz-ofA
31+
yandex : 62e83f998d9a17f5
32+
2733
# The production_url is only used when full-domain names are needed
2834
# such as sitemap.txt
2935
# Most places will/should use BASE_PATH to make the urls
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<meta charset="utf-8">
2+
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title>
3+
{% if page.description %}<meta name="description" content="{{ page.description }}">{% endif %}
4+
<meta name="author" content="{{ site.author.name }}">
5+
{% comment %}----- Site Verifications -----{% endcomment %}
6+
{% if site.verifications.alexa %}
7+
<meta name="alexaVerifyID" content="{{ site.verifications.alexa }}"/>
8+
{% endif %}
9+
{% if site.verifications.bing %}
10+
<meta name="msvalidate.01" content="{{ site.verifications.bing }}" />
11+
{% endif %}
12+
{% if site.verifications.google %}
13+
<meta name="google-site-verification" content="{{ site.verifications.google }}" />
14+
{% endif %}
15+
{% if site.verifications.yandex %}
16+
<meta name='yandex-verification' content="{{ site.verifications.yandex }}" />
17+
{% endif %}

0 commit comments

Comments
 (0)