-
Notifications
You must be signed in to change notification settings - Fork 0
/
head.html
40 lines (32 loc) · 1.53 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
<head>
<link href="http://gmpg.org/xfn/11" rel="profile">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>
{% if page.title == "Home" %}
{{ site.title }} · {{ site.tagline }}
{% else %}
{{ page.title }} · {{ site.title }}
{% endif %}
</title>
<!-- CSS -->
<link rel="stylesheet" href="{{ site.bookviewer }}/dist/book-viewer.css">
<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ site.github.url }}/atom.xml">
<script type="text/javascript" src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="{{ site.bookviewer }}/dist/uri.js"></script>
<script type="text/javascript" src="{{ site.bookviewer }}/dist/lunr.js"></script>
<script type="text/javascript">
window.Book = {
'url': '{{ site.github.repository_url }}',
'rootUrl': '{{ site.github.url }}',
'issuesUrl': '{{ site.github.repository_url }}/issues',
'contributeUrl': '{{ site.github.repository_url }}/tree/gh-pages',
'toc': {'url': '{{ site.github.url }}/SUMMARY.html'},
'searchIndex': '{{ site.github.url }}/search-index.json'
};
</script>
<script type="text/javascript" src="{{ site.bookviewer }}/dist/book-viewer.js"></script>
</head>