-
Notifications
You must be signed in to change notification settings - Fork 363
Expand file tree
/
Copy pathhead.html
More file actions
38 lines (33 loc) · 1.6 KB
/
head.html
File metadata and controls
38 lines (33 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!-- start of _includes/head.html -->
<head>
<link href="http://gmpg.org/xfn/11" rel="profile">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>
{% if page.title == "Home" %}
{{ site.title }} · {{ site.tagline }}
{% else %}
{{ page.title }} · {{ site.title }}
{% endif %}
</title>
<!-- CSS -->
<link rel="stylesheet" href={{ "/assets/css/poole.css" | relative_url }}>
<link rel="stylesheet" href={{ "/assets/css/syntax.css" | relative_url }}>
<link rel="stylesheet" href={{ "/assets/css/hyde.css"> | relative_url }}>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
<!-- Icons -->
<link rel="apple-touch-icon" sizes="180x180" href={{ "/apple-touch-icon.png" | relative_url }}>
<link rel="icon" type="image/png" sizes="32x32" href={{ "/favicon-32x32.png" | relative_url }}>
<link rel="icon" type="image/png" sizes="16x16" href={{ "/favicon-16x16.png" | relative_url }}>
<link rel="manifest" href={{ "/site.webmanifest" | relative_url }}>
<link rel="mask-icon" href={{ "/safari-pinned-tab.svg" | relative_url }} color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#000000">
<!-- RSS -->
<!--
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">
-->
</head>
<!-- end of _includes/head.html -->