File tree Expand file tree Collapse file tree 3 files changed +22
-0
lines changed
exampleSite/config/_default Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,12 @@ canonifyurls = true
2020[params .twitter ]
2121 creator = " mani_d2"
2222
23+ [params .site_verification ]
24+ google = " dRxlQUCTcreupAiAU9R-WcImzIL5ZkXVFT4PVPDJl6Y"
25+ bing = " F82FFC97299503C8B6340178FE5F1EFA"
26+ yandex = " 146d77656fc95385"
27+ naver = " e3b93136c43487a12e31584cf30306a269137968"
28+
2329[languages ]
2430 [languages .en .params ]
2531 copyright = " © Mani Kumar"
Original file line number Diff line number Diff line change 7171
7272{{- /* Analytics */}}
7373{{- template "_internal/google_analytics.html" . -}}
74+ {{- partial "site-verification.html" . -}}
7475
7576{{- /* Icons */}}
7677< link rel ="shortcut icon " href ="{{ $ogImage }} " />
Original file line number Diff line number Diff line change 1+ {{- if site.Params.site_verification.google }}
2+ < meta name ="google-site-verification " content ="{{ site.Params.site_verification.google }} " />
3+ {{- end }}
4+
5+ {{- if site.Params.site_verification.bing }}
6+ < meta name ="msvalidate.01 " content ="{{ site.Params.site_verification.bing }} " />
7+ {{- end }}
8+
9+ {{- if site.Params.site_verification.yandex }}
10+ < meta name ="yandex-verification " content ="{{ site.Params.site_verification.yandex }} " />
11+ {{- end }}
12+
13+ {{- if site.Params.site_verification.naver }}
14+ < meta name ="naver-site-verification " content ="{{ site.Params.site_verification.naver }} " />
15+ {{- end -}}
You can’t perform that action at this time.
0 commit comments