-
Notifications
You must be signed in to change notification settings - Fork 0
/
head.html
executable file
·31 lines (27 loc) · 1.41 KB
/
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
25
26
27
28
29
30
31
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ page.title | append: ' - ' |append: site.name }}</title>
<link rel="shortcut icon" href="{{ '/styles/images/favicon.ico' | prepend: site.baseurl }}">
<link rel="icon" href="{{ '/styles/images/favicon.ico' | prepend: site.baseurl }}">
<link rel="stylesheet" href="{{site.baseurl}}/styles/css/index.css">
<link rel="stylesheet" href="{{ '/styles/css/fontawesome/css/font-awesome.min.css' | prepend: site.baseurl }}">
<link rel="stylesheet" href="{{ '/styles/css/syntax.css' | prepend: site.baseurl }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl }}">
<link rel="alternate" type="application/rss+xml" title="{{ site.name }}" href="{{ '/feed.xml' | prepend: site.baseurl }}">
<meta name="description" content="{{site.meta_description}}">
<script src="{{ '/styles/js/jquery.min.js' | prepend: site.baseurl }}"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?{{ site.baidu_analysis }}";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>