-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhead.html
24 lines (17 loc) · 895 Bytes
/
head.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1" />
{% if page.title %}
{% if page.layout == "noheader" %}
<title>{{ site.title }} // {{ page.title }}</title>
{% else %}
<title>{{ site.title }} // {{ page.title }}</title>
{% endif %}
{% else %}
<title>{{ site.title }}</title>
{% endif %}
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
<link rel="shortcut icon" type="image/ico" href="{{ site.baseurl }}/assets/favicon.ico"/>
<link href="https://fonts.googleapis.com/css?family=Julius+Sans+One|Merriweather+Sans" rel="stylesheet">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/core.css">
<link rel="canonical" href="{{ page.url | prepend: site.baseurl }}">