2015-12-20 05:22:45 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
<!-- Dynamic meta title -->
|
|
|
|
<title>
|
|
|
|
{% if paginator.previous_page %}
|
2015-12-23 14:00:35 +01:00
|
|
|
Page {{ paginator.page }} • • {{ site.name }}
|
2015-12-20 05:22:45 +01:00
|
|
|
{% elsif page.title %}
|
2015-12-23 14:00:35 +01:00
|
|
|
{{ page.title }} • • {{ site.name }}
|
2015-12-20 05:22:45 +01:00
|
|
|
{% else %}
|
2015-12-23 14:00:35 +01:00
|
|
|
{{ site.name }} • • {{ site.description }}
|
2015-12-20 05:22:45 +01:00
|
|
|
{% endif %}
|
|
|
|
</title>
|
|
|
|
|
|
|
|
<!-- Dynamic meta description -->
|
|
|
|
{% if page.description %}
|
|
|
|
<meta name="description" content="{{ page.description }}">
|
|
|
|
{% elsif page.front_page %}
|
|
|
|
<meta name="description" content="{{ site.description }}">
|
|
|
|
{% else %}
|
|
|
|
<meta name="description" content="{{ page.excerpt | strip_html | strip_newlines }}" />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<!-- Mobile meta stuff -->
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<meta name="HandheldFriendly" content="True">
|
|
|
|
<meta name="MobileOptimized" content="320">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta http-equiv="cleartype" content="on">
|
|
|
|
|
|
|
|
<!-- CSS -->
|
|
|
|
<link rel="stylesheet" href="/assets/css/bigchain.min.css">
|
|
|
|
|
|
|
|
<!-- Canonical URL -->
|
|
|
|
<link rel="canonical" href="{{ site.url }}{{ page.url | replace:'index.html','' }}">
|
|
|
|
|
|
|
|
<!-- Apple -->
|
|
|
|
<meta name="apple-mobile-web-app-title" content="{{ site.name }}">
|
|
|
|
|
|
|
|
<!-- Touch Icons -->
|
|
|
|
<link rel="apple-touch-icon-precomposed" href="/assets/img/apple-touch-icon-precomposed-180x180.png" sizes="180x180">
|
|
|
|
<link rel="icon" type="image/png" href="/assets/img/favicon-32x32.png" sizes="32x32">
|
2015-12-21 19:36:25 +01:00
|
|
|
<link rel="icon" type="image/png" href="/assets/img/favicon-192x192.png" sizes="192x192">
|
2015-12-20 05:22:45 +01:00
|
|
|
<link rel="icon" type="image/png" href="/assets/img/favicon-96x96.png" sizes="96x96">
|
2016-02-10 15:17:16 +01:00
|
|
|
<link rel="mask-icon" href="/assets/img/favicon-glyph.svg" color="#074354">
|
2015-12-20 05:22:45 +01:00
|
|
|
|
|
|
|
<!-- Win 8/8.1 -->
|
|
|
|
<meta name="msapplication-TileImage" content="{{ site.url }}/assets/img/TileImage-144x144.png"/>
|
2016-02-10 15:17:16 +01:00
|
|
|
<meta name="msapplication-TileColor" content="#074354"/>
|
2015-12-20 05:22:45 +01:00
|
|
|
|
|
|
|
<!-- Android Lollipop theme color -->
|
2016-02-10 15:17:16 +01:00
|
|
|
<meta name="theme-color" content="#074354">
|
2015-12-20 05:22:45 +01:00
|
|
|
|
|
|
|
<!-- OpenGraph -->
|
|
|
|
{% include opengraph.html %}
|
|
|
|
|
|
|
|
<!-- Twitter Cards -->
|
|
|
|
{% include twittercards.html %}
|
|
|
|
|
2016-01-08 13:01:21 +01:00
|
|
|
<!-- Prevent search indexing for some pages or non-production builds -->
|
2017-03-20 15:46:55 +01:00
|
|
|
{% if jekyll.environment != 'livedeploy' or page.sitemap == false %}
|
2016-01-08 13:01:21 +01:00
|
|
|
<meta name="robots" content="noindex, nofollow">
|
2015-12-20 05:22:45 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2017-03-07 11:38:57 +01:00
|
|
|
<!-- Google Search Console verification -->
|
|
|
|
<meta name="google-site-verification" content="W78RKvWHp0dn7gE6CDevllN3Vq6yawxMUWAKDhRPIY0" />
|
|
|
|
|
2015-12-20 05:22:45 +01:00
|
|
|
</head>
|