-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhead.html
More file actions
23 lines (18 loc) · 1.06 KB
/
head.html
File metadata and controls
23 lines (18 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
<!-- CSS files -->
<link rel="stylesheet" href="{{ site.url }}/assets/css/font-awesome.min.css">
<link rel="stylesheet" href="{{ site.url }}/assets/css/main.css">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.url }}">
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ " /feed.xml " | prepend: site.url }}" />
<!-- Icons -->
<!-- 16x16 -->
<link rel="shortcut icon" href="{{ site.url }}/assets/img/favicon.ico">
<!-- 32x32 -->
<link rel="shortcut icon" href="{{ site.url }}/assets/img/favicon.png">
<link rel="shortcut icon" href="{{ site.url }}/assets/img/favicon.gif">
</head>