|
| 1 | +<head> |
| 2 | + <meta charset="utf-8"> |
| 3 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 4 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 5 | + |
| 6 | + <title>{{ site.title }}{% if page.title %} – {{ page.title }}{% endif %}</title> |
| 7 | + <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}"> |
| 8 | + |
| 9 | + <link rel="stylesheet" href="{{ site.baseurl }}/css/style.css"> |
| 10 | + <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}"> |
| 11 | + <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" /> |
| 12 | + |
| 13 | + <meta property="og:title" content="{{ site.title }}"> |
| 14 | + <meta property="og:url" content="{{ site.url }}"> |
| 15 | + <meta property="og:description" content="{{ site.description }}"> |
| 16 | + <meta property="og:image" content="{{ site.url }}/icons/favicon-200x200.png"> |
| 17 | + <link rel="apple-touch-icon" sizes="57x57" href="{{ site.baseurl }}/icons/apple-touch-icon-57x57.png?v=lkkaaLQvvl"> |
| 18 | + <link rel="apple-touch-icon" sizes="60x60" href="{{ site.baseurl }}/icons/apple-touch-icon-60x60.png?v=lkkaaLQvvl"> |
| 19 | + <link rel="apple-touch-icon" sizes="72x72" href="{{ site.baseurl }}/icons/apple-touch-icon-72x72.png?v=lkkaaLQvvl"> |
| 20 | + <link rel="apple-touch-icon" sizes="76x76" href="{{ site.baseurl }}/icons/apple-touch-icon-76x76.png?v=lkkaaLQvvl"> |
| 21 | + <link rel="apple-touch-icon" sizes="114x114" href="{{ site.baseurl }}/icons/apple-touch-icon-114x114.png?v=lkkaaLQvvl"> |
| 22 | + <link rel="apple-touch-icon" sizes="120x120" href="{{ site.baseurl }}/icons/apple-touch-icon-120x120.png?v=lkkaaLQvvl"> |
| 23 | + <link rel="apple-touch-icon" sizes="144x144" href="{{ site.baseurl }}/icons/apple-touch-icon-144x144.png?v=lkkaaLQvvl"> |
| 24 | + <link rel="apple-touch-icon" sizes="152x152" href="{{ site.baseurl }}/icons/apple-touch-icon-152x152.png?v=lkkaaLQvvl"> |
| 25 | + <link rel="apple-touch-icon" sizes="180x180" href="{{ site.baseurl }}/icons/apple-touch-icon-180x180.png?v=lkkaaLQvvl"> |
| 26 | + <link rel="icon" type="image/png" href="{{ site.baseurl }}/icons/favicon-32x32.png?v=lkkaaLQvvl" sizes="32x32"> |
| 27 | + <link rel="icon" type="image/png" href="{{ site.baseurl }}/icons/favicon-194x194.png?v=lkkaaLQvvl" sizes="194x194"> |
| 28 | + <link rel="icon" type="image/png" href="{{ site.baseurl }}/icons/favicon-96x96.png?v=lkkaaLQvvl" sizes="96x96"> |
| 29 | + <link rel="icon" type="image/png" href="{{ site.baseurl }}/icons/android-chrome-192x192.png?v=lkkaaLQvvl" sizes="192x192"> |
| 30 | + <link rel="icon" type="image/png" href="{{ site.baseurl }}/icons/favicon-16x16.png?v=lkkaaLQvvl" sizes="16x16"> |
| 31 | + <link rel="manifest" href="{{ site.baseurl }}/manifest.json?v=lkkaaLQvvl"> |
| 32 | + <link rel="shortcut icon" href="{{ site.baseurl }}/icons/favicon.ico?v=lkkaaLQvvl"> |
| 33 | + <meta name="msapplication-TileColor" content="#3d3e3e"> |
| 34 | + <meta name="msapplication-TileImage" content="/icons/mstile-144x144.png?v=lkkaaLQvvl"> |
| 35 | + <meta name="theme-color" content="#ffffff"> |
| 36 | + |
| 37 | + <script> |
| 38 | + (function(){ |
| 39 | + function addFont() { |
| 40 | + var style = document.createElement('style'); |
| 41 | + style.rel = 'stylesheet'; |
| 42 | + document.head.appendChild(style); |
| 43 | + style.textContent = localStorage.fonts; |
| 44 | + } |
| 45 | + try { |
| 46 | + if (localStorage.fonts) { |
| 47 | + addFont(); |
| 48 | + } else { |
| 49 | + var request = new XMLHttpRequest(); |
| 50 | + request.open('GET', '/css/fonts/fonts.css', true); |
| 51 | + |
| 52 | + request.onload = function() { |
| 53 | + if (request.status >= 200 && request.status < 400) { |
| 54 | + localStorage.fonts = request.responseText; |
| 55 | + addFont(); |
| 56 | + } |
| 57 | + }; |
| 58 | + request.send(); |
| 59 | + } |
| 60 | + } catch(ex) { |
| 61 | + } |
| 62 | + }()); |
| 63 | + </script> |
| 64 | + {% if site.env == 'production' %} |
| 65 | + <script src="{{ site.baseurl }}/js/cssclasses.min.js" defer></script> |
| 66 | + {% else %} |
| 67 | + <script src="{{ site.baseurl }}/js/cssclasses.js" defer></script> |
| 68 | + {% endif %} |
| 69 | +</head> |
0 commit comments