2016-05-21 09:42:57 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
<title>{{ site.title }}</title>
|
2016-07-26 12:41:47 +00:00
|
|
|
|
|
|
|
<meta property="og:url" content="{{ site.url}}/{{ path }}"/>
|
|
|
|
<meta property="og:title" content="{{ title }}"/>
|
2016-10-17 18:53:00 +00:00
|
|
|
<meta property="og:description" content="{{ striptags (markdown summary) }}"/>
|
2016-07-26 12:41:47 +00:00
|
|
|
<meta property="og:site_name" content="{{ site.title }}"/>
|
2017-10-12 16:44:39 +00:00
|
|
|
<meta property="og:image" content="{{ site.url }}/images/marcus.jpg" />
|
2016-05-21 09:42:57 +00:00
|
|
|
|
2017-09-02 09:31:14 +00:00
|
|
|
<!-- Twitter Do Not Track -->
|
|
|
|
<meta name="twitter:dnt" content="on">
|
|
|
|
|
2016-10-17 18:53:00 +00:00
|
|
|
<link rel="apple-touch-icon" sizes="57x57" href="/images/favico/apple-icon-57x57.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="60x60" href="/images/favico/apple-icon-60x60.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="72x72" href="/images/favico/apple-icon-72x72.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="76x76" href="/images/favico/apple-icon-76x76.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="114x114" href="/images/favico/apple-icon-114x114.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="120x120" href="/images/favico/apple-icon-120x120.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="144x144" href="/images/favico/apple-icon-144x144.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="152x152" href="/images/favico/apple-icon-152x152.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/images/favico/apple-icon-180x180.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="192x192" href="/images/favico/android-icon-192x192.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/images/favico/favicon-32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="96x96" href="/images/favico/favicon-96x96.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/images/favico/favicon-16x16.png">
|
|
|
|
<link rel="manifest" href="/manifest.json">
|
|
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
|
|
<meta name="msapplication-TileImage" content="/images/favico/ms-icon-144x144.png">
|
|
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
|
2016-05-27 06:02:17 +00:00
|
|
|
<link rel="stylesheet" href="/css/main.css?{{moment date 'YYYYMMDDHHMM'}}">
|
2016-05-21 09:42:57 +00:00
|
|
|
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ site.url }}/feed.xml">
|
2017-10-11 20:25:20 +00:00
|
|
|
<script>
|
|
|
|
if ('serviceWorker' in navigator) {
|
|
|
|
window.addEventListener('load', function() {
|
|
|
|
navigator.serviceWorker.register('/service-worker.js', { scope: '/' });
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
2016-07-26 12:29:57 +00:00
|
|
|
</head>
|