This repository was archived by the owner on Oct 29, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathhead.html
More file actions
26 lines (22 loc) · 1.24 KB
/
head.html
File metadata and controls
26 lines (22 loc) · 1.24 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
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="{{site.baseurl}}/assets/images/favicon.png" type="image/x-icon">
<link rel="apple-touch-icon" href="{{site.baseurl}}/assets/images/apple-touch-icon-iphone.png">
<link rel="apple-touch-icon" sizes="76x76" href="{{site.baseurl}}/assets/images/touch-icon-ipad.png">
<link rel="apple-touch-icon" sizes="120x120" href="{{site.baseurl}}/assets/images/touch-icon-iphone-retina.png">
<link rel="apple-touch-icon" sizes="152x152" href="{{site.baseurl}}/assets/images/touch-icon-ipad-retina.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Ember CLI">
{% feed_meta %}
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="{{site.baseurl}}/assets/main.css">
{% if page.path == "index.html" %}
<title>{{site.name}} ‐ {{site.description}}</title>
{% else if page.title %}
<title>{{site.name}} ‐ {{page.title}}</title>
{% else %}
<title>{{site.name}}</title>
{% endif %}
</head>