|
1 | 1 | <head> |
2 | | - <meta charset="utf-8"> |
3 | | - <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
4 | | - <meta name="viewport" content="width=device-width, initial-scale=1"> |
5 | | - <meta name="description" content=""> |
6 | | - <title>{{ page.title }}</title> |
| 2 | + <link href="http://gmpg.org/xfn/11" rel="profile"> |
| 3 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 4 | + <meta http-equiv="content-type" content="text/html; charset=utf-8"> |
7 | 5 |
|
8 | | - <!-- Open Graph Meta --> |
9 | | - <meta content="{{ site.title }}" property="og:site_name"> |
10 | | - {% if page.title %} |
11 | | - <meta content="{{ page.title }}" property="og:title"> |
12 | | - {% else %} |
13 | | - <meta content="{{ site.title }}" property="og:title"> |
14 | | - {% endif %} |
15 | | - {% if page.title %} |
16 | | - <meta content="article" property="og:type"> |
17 | | - {% else %} |
18 | | - <meta content="website" property="og:type"> |
19 | | - {% endif %} |
20 | | - {% if page.description %} |
21 | | - <meta content="{{ page.description }}" property="og:description"> |
22 | | - {% else %} |
23 | | - <meta content="{{ site.description }}" property="og:description"> |
24 | | - {% endif %} |
25 | | - {% if page.url %} |
26 | | - <meta content="{{ site.url }}{{ page.url }}" property="og:url"> |
27 | | - {% endif %} |
28 | | - {% if page.date %} |
29 | | - <meta content="{{ page.date | date_to_xmlschema }}" property="article:published_time"> |
30 | | - <meta content="{{ site.url }}/about/" property="article:author"> |
31 | | - {% endif %} |
32 | | - {% if page.image %} |
33 | | - <meta content="{{ site.url }}/assets/img/{{ page.image }}" property="og:image"> |
34 | | - {% else %} |
35 | | - <meta content="{{ '/assets/img/sky.jpg' | prepend: site.url }}" property="og:image"> |
36 | | - {% endif %} |
| 6 | + <!-- Enable responsiveness on mobile devices--> |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"> |
37 | 8 |
|
38 | | - <!-- Twitter Cards --> |
39 | | - <meta name="twitter:card" content="summary"> |
40 | | - <meta name="twitter:site" content="@{{ site.social.twitter }}"> |
41 | | - <meta name="twitter:creator" content="@{{ site.social.twitter }}"> |
42 | | - {% if page.title %} |
43 | | - <meta name="twitter:title" content="{{ page.title }}"> |
| 9 | + <title> |
| 10 | + {% if page.title == "Home" %} |
| 11 | + {{ site.title }} · {{ site.tagline }} |
44 | 12 | {% else %} |
45 | | - <meta name="twitter:title" content="{{ site.title }}"> |
46 | | - {% endif %} |
47 | | - {% if page.url %} |
48 | | - <meta name="twitter:url" content="{{ site.url }}{{ page.url }}"> |
| 13 | + {{ page.title }} · {{ site.title }} |
49 | 14 | {% endif %} |
50 | | - {% if page.description %} |
51 | | - <meta name="twitter:description" content="{{ page.description }}"> |
52 | | - {% else %} |
53 | | - <meta name="twitter:description" content="{{ site.description }}"> |
54 | | - {% endif %} |
55 | | - {% if page.image %} |
56 | | - <meta name="twitter:image:src" content="{{ site.url }}/assets/img/{{ page.image }}"> |
57 | | - {% else %} |
58 | | - <meta name="twitter:image:src" content="{{ '/assets/img/sky.jpg' | prepend: site.url }}"> |
59 | | - {% endif %} |
60 | | - |
61 | | - |
62 | | - <!-- Favicon --> |
63 | | - <link rel="icon" type="image/x-icon" href="{{ "/assets/img/favicon.ico" | prepend: site.baseurl }}" /> |
64 | | - |
65 | | - <!-- Come and get me RSS readers --> |
66 | | - <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" /> |
67 | | - |
68 | | - <!-- Stylesheet --> |
69 | | - <link rel="stylesheet" href="{{ "/assets/css/style.css" | prepend: site.baseurl }}"> |
70 | | - <!--[if IE 8]><link rel="stylesheet" href="{{ "/assets/css/ie.css" | prepend: site.baseurl }}"><![endif]--> |
71 | | - <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}"> |
| 15 | + </title> |
72 | 16 |
|
73 | | - <!-- Modernizr --> |
74 | | - <script src="{{ "/assets/js/modernizr.custom.15390.js" | prepend: site.baseurl }}" type="text/javascript"></script> |
| 17 | + <!-- CSS --> |
| 18 | + <link rel="stylesheet" href="{{ site.baseurl }}public/css/poole.css"> |
| 19 | + <link rel="stylesheet" href="{{ site.baseurl }}public/css/syntax.css"> |
| 20 | + <link rel="stylesheet" href="{{ site.baseurl }}public/css/blackdoc.css"> |
| 21 | + <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Abel|Roboto|Roboto+Condensed:300|Pacifico&display=swap"> |
| 22 | + <!-- Icons --> |
| 23 | + <link rel="shortcut icon" href="{{ site.baseurl }}public/favicon.ico"> |
75 | 24 |
|
76 | | - {% if site.google_analytics %} {% include google_analytics.html %} {% endif %} |
| 25 | + <!-- RSS --> |
| 26 | + <link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml"> |
77 | 27 | </head> |
0 commit comments