2016-02-20 19:26:06 +00:00
|
|
|
<!-- Begin Jekyll SEO tag v{{ seo_tag.version }} -->
|
2017-04-06 23:02:32 +00:00
|
|
|
{% if seo_tag.title? %}
|
|
|
|
<title>{{ seo_tag.title }}</title>
|
2016-02-23 02:31:59 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2017-04-06 23:02:32 +00:00
|
|
|
{% if seo_tag.page_title %}
|
|
|
|
<meta property="og:title" content="{{ seo_tag.page_title }}" />
|
2015-10-25 21:21:46 +00:00
|
|
|
{% endif %}
|
2016-02-09 23:33:53 +00:00
|
|
|
|
2017-04-06 23:02:32 +00:00
|
|
|
{% if seo_tag.author.name %}
|
|
|
|
<meta name="author" content="{{ seo_tag.author.name }}" />
|
2016-01-12 01:30:26 +00:00
|
|
|
{% endif %}
|
2016-02-09 23:33:53 +00:00
|
|
|
|
2017-04-06 23:02:32 +00:00
|
|
|
<meta property="og:locale" content="{{ seo_tag.page_lang | replace:'-','_' }}" />
|
2015-10-25 21:21:46 +00:00
|
|
|
|
2017-04-06 23:02:32 +00:00
|
|
|
{% if seo_tag.description %}
|
|
|
|
<meta name="description" content="{{ seo_tag.description }}" />
|
|
|
|
<meta property="og:description" content="{{ seo_tag.description }}" />
|
2015-10-25 21:21:46 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2017-04-06 23:02:32 +00:00
|
|
|
{% if site.url %}
|
2017-04-08 18:20:21 +00:00
|
|
|
<link rel="canonical" href="{{ seo_tag.canonical_url }}" />
|
|
|
|
<meta property="og:url" content="{{ seo_tag.canonical_url }}" />
|
2015-10-25 21:21:46 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2017-04-06 23:02:32 +00:00
|
|
|
{% if seo_tag.site_title %}
|
|
|
|
<meta property="og:site_name" content="{{ seo_tag.site_title }}" />
|
2015-10-25 21:21:46 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2017-04-06 23:02:32 +00:00
|
|
|
{% if seo_tag.image %}
|
|
|
|
<meta property="og:image" content="{{ seo_tag.image.path }}" />
|
|
|
|
{% if seo_tag.image.height %}
|
|
|
|
<meta property="og:image:height" content="{{ seo_tag.image.height }}" />
|
2017-02-16 19:07:35 +00:00
|
|
|
{% endif %}
|
2017-04-06 23:02:32 +00:00
|
|
|
{% if seo_tag.image.width %}
|
|
|
|
<meta property="og:image:width" content="{{ seo_tag.image.width }}" />
|
2016-04-19 13:55:34 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
2015-10-25 21:21:46 +00:00
|
|
|
{% if page.date %}
|
|
|
|
<meta property="og:type" content="article" />
|
2016-02-03 17:52:46 +00:00
|
|
|
<meta property="article:published_time" content="{{ page.date | date_to_xmlschema }}" />
|
2016-05-11 22:02:07 +00:00
|
|
|
{% endif %}
|
2016-02-03 17:52:46 +00:00
|
|
|
|
2016-05-11 22:02:07 +00:00
|
|
|
{% if paginator.previous_page %}
|
2016-10-06 20:56:15 +00:00
|
|
|
<link rel="prev" href="{{ paginator.previous_page_path | absolute_url }}">
|
2016-05-11 22:02:07 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if paginator.next_page %}
|
2016-10-06 20:56:15 +00:00
|
|
|
<link rel="next" href="{{ paginator.next_page_path | absolute_url }}">
|
2015-10-25 21:21:46 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.twitter %}
|
2017-04-06 23:02:32 +00:00
|
|
|
{% if seo_tag.image %}
|
2016-03-03 21:28:12 +00:00
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
2016-03-05 18:29:49 +00:00
|
|
|
{% else %}
|
2016-03-03 21:28:12 +00:00
|
|
|
<meta name="twitter:card" content="summary" />
|
|
|
|
{% endif %}
|
2016-03-05 20:19:14 +00:00
|
|
|
|
2015-10-25 21:21:46 +00:00
|
|
|
<meta name="twitter:site" content="@{{ site.twitter.username | replace:"@","" }}" />
|
2016-02-09 23:33:53 +00:00
|
|
|
|
2017-04-06 23:02:32 +00:00
|
|
|
{% if seo_tag.author.twitter %}
|
|
|
|
<meta name="twitter:creator" content="@{{ seo_tag.author.twitter }}" />
|
2015-10-25 21:21:46 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
2016-02-03 17:52:46 +00:00
|
|
|
{% if site.facebook %}
|
2016-05-11 17:52:28 +00:00
|
|
|
{% if site.facebook.admins %}
|
|
|
|
<meta property="fb:admins" content="{{ site.facebook.admins }}" />
|
|
|
|
{% endif %}
|
|
|
|
|
2016-02-22 00:28:03 +00:00
|
|
|
{% if site.facebook.publisher %}
|
|
|
|
<meta property="article:publisher" content="{{ site.facebook.publisher }}" />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.facebook.app_id %}
|
|
|
|
<meta property="fb:app_id" content="{{ site.facebook.app_id }}" />
|
|
|
|
{% endif %}
|
2016-02-09 23:33:53 +00:00
|
|
|
{% endif %}
|
2016-02-09 21:22:28 +00:00
|
|
|
|
2017-01-13 04:37:53 +00:00
|
|
|
{% if site.webmaster_verifications %}
|
|
|
|
{% if site.webmaster_verifications.google %}
|
|
|
|
<meta name="google-site-verification" content="{{ site.webmaster_verifications.google }}">
|
|
|
|
{% endif %}
|
2017-04-06 23:02:32 +00:00
|
|
|
|
2017-01-13 04:37:53 +00:00
|
|
|
{% if site.webmaster_verifications.bing %}
|
|
|
|
<meta name="msvalidate.01" content="{{ site.webmaster_verifications.bing }}">
|
|
|
|
{% endif %}
|
2017-04-06 23:02:32 +00:00
|
|
|
|
2017-01-13 04:37:53 +00:00
|
|
|
{% if site.webmaster_verifications.alexa %}
|
|
|
|
<meta name="alexaVerifyID" content="{{ site.webmaster_verifications.alexa }}">
|
|
|
|
{% endif %}
|
2017-04-06 23:02:32 +00:00
|
|
|
|
2017-01-13 04:37:53 +00:00
|
|
|
{% if site.webmaster_verifications.yandex %}
|
|
|
|
<meta name="yandex-verification" content="{{ site.webmaster_verifications.yandex }}">
|
|
|
|
{% endif %}
|
|
|
|
{% elsif site.google_site_verification %}
|
2016-02-09 21:22:28 +00:00
|
|
|
<meta name="google-site-verification" content="{{ site.google_site_verification }}" />
|
2016-02-03 17:41:05 +00:00
|
|
|
{% endif %}
|
2017-01-13 04:37:53 +00:00
|
|
|
|
2016-02-22 18:35:55 +00:00
|
|
|
<script type="application/ld+json">
|
2017-04-08 18:20:21 +00:00
|
|
|
{{ seo_tag.json_ld | jsonify }}
|
2016-02-22 18:35:55 +00:00
|
|
|
</script>
|
|
|
|
|
2015-10-25 21:21:46 +00:00
|
|
|
<!-- End Jekyll SEO tag -->
|