Merge pull request #33 from bdronneau/feat/verify-google-bing
feat: add meta for google & bing verification
This commit is contained in:
commit
4c049b5fff
|
@ -6,6 +6,12 @@ description: "Write an awesome description for your new site here. You can edit
|
|||
skills: "Web Developer - Graphic Artist - User Experience Designer"
|
||||
meta_author: LastName FirstName
|
||||
|
||||
# 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
|
||||
|
||||
|
|
|
@ -11,6 +11,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