-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhead.html
92 lines (80 loc) · 2.52 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<head>
<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.desc %}
<meta content="{{ page.desc }}" name="description">
{% endif %}
{% if page.keywords %}
<meta name="keywords" content="{{ page.keywords }}">
{% endif %}
<meta name="author" content="{{ site.author.name }}">
<title>
{% if page.title != "index" %}
{{ site.title }}|{{ page.title }}
{% else %}
{{ site.title }}
{% endif %}
</title>
<!-- favicon -->
<link rel="shortcut icon" href="{{ "/static/assets/img/favicon.ico" | prepend: site.baseurl }}">
<!-- Main CSS -->
<link href="{{ "/static/assets/app-20170307.min.css" | prepend: site.baseurl }}" rel="stylesheet">
<!-- Main Scripts -->
<script src="{{"/static/assets/app-20170307.min.js"| prepend: site.baseurl }}"></script>
<script type="text/javascript">
$(document).ready(function () {
var initial = 0;
var show = true;
var toggleSearch = function (visible) {
initial = 0;
show = !visible;
var visibility = visible ? 'block' : 'none';
$("#search-content").val("");
$(".search-tool").css("display", visibility);
};
var shouldToggle = function (time) {
var gap = time - initial;
initial = time;
return gap < 500;
};
$(document).keyup(function (e) {
var now = new Date().getTime();
if (e.keyCode == 17 && shouldToggle(now)) {
toggleSearch(show);
} else if (e.keyCode == 27) {
toggleSearch(false);
}
});
$("#search-content").keyup(function (e) {
var now = new Date().getTime();
if (e.keyCode == 17 && shouldToggle(now)) {
toggleSearch(show);
}
});
$("#close-btn").click(function () {
toggleSearch(false);
});
$("#search-btn").click(function() {
toggleSearch(true);
});
$.getJSON("{{ "/search/cb-search.json" | prepend: site.baseurl }}")
.done(function (data) {
if (data.code == 0) {
$("#search-content").typeahead({
source: data.data,
displayText: function (item) {
return item.title;
},
afterSelect: function (item) {
window.location.href = item.url;
}
});
}
});
});
$(function(){
$("pre").css('display','block');
});
</script>
</head>