Update New Favicons
This commit is contained in:
parent
2fd4472a3f
commit
897f0ff9a1
27 changed files with 61 additions and 45 deletions
|
@ -7,21 +7,24 @@
|
|||
<link rel="stylesheet" href="{{ site.url }}/assets/css/style_feeling_responsive.min.css">
|
||||
<script src="{{ site.url }}/assets/js/modernizr.min.js"></script>
|
||||
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400italic,400,700%7cVolkhov:400,700' rel='stylesheet' type='text/css'>
|
||||
{% if site.google_site_verification %}
|
||||
<meta name="google-site-verification" content="{{ site.google_site_verification}}" />
|
||||
{% endif %}
|
||||
|
||||
{% if page.meta_description %}
|
||||
<meta name="description" content="{{ page.meta_description | strip_html | escape }}"/>
|
||||
{% elsif page.description %}
|
||||
<meta name="description" content="{{ page.description | strip_html | escape }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% if site.google_author %}
|
||||
<link rel="author" href="{{ site.google_author }}"/>
|
||||
{% endif %}
|
||||
{% if site.favicon %}
|
||||
{% if site.google_site_verification %}<meta name="google-site-verification" content="{{ site.google_site_verification}}" />{% endif %}
|
||||
{% if site.bing_webmastertools_id %}<meta name="msvalidate.01" content="{{ site.bing_webmastertools_id }}" />{% endif %}
|
||||
{% if page.meta_description %}<meta name="description" content="{{ page.meta_description | strip_html | escape }}"/>{% elsif page.description %}<meta name="description" content="{{ page.description | strip_html | escape }}"/>{% endif %}
|
||||
{% if site.google_author %}<link rel="author" href="{{ site.google_author }}"/>{% endif %}
|
||||
{% if site.favicon %}
|
||||
<link rel="shortcut icon" href="{{ site.favicon }}" type="image/png" />
|
||||
<link rel="icon" href="{{ site.favicon }}" type="image/png" />
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
<!-- Facebook Optimization -->
|
||||
<meta property="og:locale" content="{% if site.og_locale == nil %}en_EN{% else %}{{ site.og_locale }}{% endif %}" />
|
||||
{% if site.og_type %}<meta property="og:type" content="website" />{% endif %}
|
||||
<meta property="og:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}" />
|
||||
{% if page.meta_description %}<meta property="og:description" content="{{ page.meta_description | strip_html | escape }}"/>{% elsif page.description %}<meta name="description" content="{{ page.description | strip_html | escape }}"/>{% endif %}
|
||||
<meta property="og:url" content="{{ site.url }}{{ page.url }}" />
|
||||
{% if site.title %}<meta property="og:site_name" content="{{ site.title }}" />{% endif %}
|
||||
{% if page.image.thumb %}<meta property="og:image" content="{{ site.url }}/assets/img/{{ page.image.thumb }}" />{% endif %}
|
||||
|
||||
{% if site.alexa_verify_id %}<meta name="alexaVerifyID" content="{{ site.alexa_verify_id }}" />{% endif %}
|
||||
|
||||
</head>
|
Reference in a new issue