feat: add meta for google & bing verification
This commit is contained in:
parent
6ee599856e
commit
b28748b773
|
@ -5,6 +5,12 @@ url: https://example.github.io
|
|||
description: "Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description."
|
||||
skills: "Web Developer - Graphic Artist - User Experience Designer"
|
||||
|
||||
# Google webmaster tools
|
||||
google_verify:
|
||||
|
||||
# https://ssl.bing.com/webmaster/configure/verify/ownership Option 2 content= goes here
|
||||
bing_verify:
|
||||
|
||||
# Contact form: comment the line below if you want to stick with the default PHP contact form
|
||||
contact: static
|
||||
|
||||
|
|
|
@ -10,6 +10,12 @@
|
|||
<!-- Custom CSS & Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
|
||||
<link rel="stylesheet" href="{{ "/style.css" }}">
|
||||
|
||||
<!-- Google verification -->
|
||||
{% if site.google_verify %}<meta name="google-site-verification" content="{{ site.google_verify }}">{% endif %}
|
||||
|
||||
<!-- Bing Verification -->
|
||||
{% if site.bing_verify %}<meta name="msvalidate.01" content="{{ site.bing_verify }}">{% endif %}
|
||||
|
||||
<!-- Custom Fonts -->
|
||||
<link rel="stylesheet" href="{{ "/css/font-awesome/css/font-awesome.min.css" }}">
|
||||
<link href="//fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
|
||||
|
|
Loading…
Reference in New Issue