2015-07-19 06:08:38 +08:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html lang="{{ language }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2017-09-08 05:19:22 +08:00
|
|
|
<title>{{ title }}</title>
|
2015-07-19 06:08:38 +08:00
|
|
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
|
2016-02-25 21:32:49 +08:00
|
|
|
<meta name="description" content="{{ description }}">
|
2015-07-19 06:08:38 +08:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
2015-09-05 23:26:17 +08:00
|
|
|
<base href="{{ path_to_root }}">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="book.css">
|
2017-04-13 22:46:54 +08:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css">
|
2015-09-14 02:03:34 +08:00
|
|
|
|
2016-02-23 00:17:07 +08:00
|
|
|
<link rel="shortcut icon" href="{{ favicon }}">
|
|
|
|
|
2015-09-14 02:03:34 +08:00
|
|
|
<!-- Font Awesome -->
|
2016-03-24 04:16:41 +08:00
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
2015-09-14 02:03:34 +08:00
|
|
|
|
2015-09-05 23:26:17 +08:00
|
|
|
<link rel="stylesheet" href="highlight.css">
|
2015-09-14 17:08:48 +08:00
|
|
|
<link rel="stylesheet" href="tomorrow-night.css">
|
2017-06-07 04:35:44 +08:00
|
|
|
<link rel="stylesheet" href="ayu-highlight.css">
|
2015-09-05 23:26:17 +08:00
|
|
|
|
2017-05-20 19:56:01 +08:00
|
|
|
<!-- Custom theme -->
|
|
|
|
{{#each additional_css}}
|
|
|
|
<link rel="stylesheet" href="{{this}}">
|
|
|
|
{{/each}}
|
|
|
|
|
2017-06-25 06:32:26 +08:00
|
|
|
{{#if mathjax_support}}
|
2015-09-11 05:30:29 +08:00
|
|
|
<!-- MathJax -->
|
2017-05-06 05:07:11 +08:00
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
|
2017-06-25 06:32:26 +08:00
|
|
|
{{/if}}
|
2015-09-15 00:12:45 +08:00
|
|
|
|
2017-06-01 03:51:19 +08:00
|
|
|
<!-- Fetch Clipboard.js from CDN but have a local fallback -->
|
2017-05-31 07:14:01 +08:00
|
|
|
<script src="https://cdn.jsdelivr.net/clipboard.js/1.6.1/clipboard.min.js"></script>
|
2017-06-01 03:51:19 +08:00
|
|
|
<script>
|
|
|
|
if (typeof Clipboard == 'undefined') {
|
|
|
|
document.write(unescape("%3Cscript src='clipboard.min.js'%3E%3C/script%3E"));
|
|
|
|
}
|
|
|
|
</script>
|
2017-05-31 07:14:01 +08:00
|
|
|
|
2015-09-15 00:12:45 +08:00
|
|
|
<!-- Fetch JQuery from CDN but have a local fallback -->
|
2016-03-24 04:16:41 +08:00
|
|
|
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
|
2015-09-15 00:12:45 +08:00
|
|
|
<script>
|
|
|
|
if (typeof jQuery == 'undefined') {
|
|
|
|
document.write(unescape("%3Cscript src='jquery.js'%3E%3C/script%3E"));
|
|
|
|
}
|
|
|
|
</script>
|
2017-06-07 02:34:57 +08:00
|
|
|
|
2017-06-12 03:54:09 +08:00
|
|
|
<!-- Fetch store.js from local - TODO add CDN when 2.x.x is available on cdnjs -->
|
|
|
|
<script src="store.js"></script>
|
2017-06-12 17:09:07 +08:00
|
|
|
|
2017-06-07 02:34:57 +08:00
|
|
|
<!-- Custom JS script -->
|
|
|
|
{{#each additional_js}}
|
|
|
|
<script type="text/javascript" src="{{this}}"></script>
|
|
|
|
{{/each}}
|
|
|
|
|
2015-07-19 06:08:38 +08:00
|
|
|
</head>
|
2016-06-15 22:25:28 +08:00
|
|
|
<body class="light">
|
2015-09-15 00:12:45 +08:00
|
|
|
<!-- Set the theme before any content is loaded, prevents flash -->
|
|
|
|
<script type="text/javascript">
|
2017-09-23 01:56:58 +08:00
|
|
|
var theme = store.get('mdbook-theme');
|
2017-06-12 03:54:09 +08:00
|
|
|
if (theme === null || theme === undefined) { theme = 'light'; }
|
2015-09-15 00:12:45 +08:00
|
|
|
$('body').removeClass().addClass(theme);
|
|
|
|
</script>
|
2015-07-19 20:02:21 +08:00
|
|
|
|
2015-09-24 22:47:33 +08:00
|
|
|
<!-- Hide / unhide sidebar before it is displayed -->
|
|
|
|
<script type="text/javascript">
|
2017-09-23 01:58:45 +08:00
|
|
|
var sidebar = store.get('mdbook-sidebar');
|
2015-09-24 22:47:33 +08:00
|
|
|
if (sidebar === "hidden") { $("html").addClass("sidebar-hidden") }
|
|
|
|
else if (sidebar === "visible") { $("html").addClass("sidebar-visible") }
|
|
|
|
</script>
|
|
|
|
|
2015-07-29 03:01:13 +08:00
|
|
|
<div id="sidebar" class="sidebar">
|
2015-07-30 05:32:01 +08:00
|
|
|
{{#toc}}{{/toc}}
|
2015-07-29 03:01:13 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="page-wrapper" class="page-wrapper">
|
|
|
|
|
2017-06-16 03:12:28 +08:00
|
|
|
<div class="page" tabindex="-1">
|
2015-08-01 23:21:05 +08:00
|
|
|
<div id="menu-bar" class="menu-bar">
|
2015-09-05 17:40:40 +08:00
|
|
|
<div class="left-buttons">
|
2015-09-11 07:16:29 +08:00
|
|
|
<i id="sidebar-toggle" class="fa fa-bars"></i>
|
|
|
|
<i id="theme-toggle" class="fa fa-paint-brush"></i>
|
2015-09-05 17:40:40 +08:00
|
|
|
</div>
|
|
|
|
|
2017-09-08 05:19:22 +08:00
|
|
|
<h1 class="menu-title">{{ book_title }}</h1>
|
2015-09-05 17:40:40 +08:00
|
|
|
|
|
|
|
<div class="right-buttons">
|
2017-09-14 04:17:23 +08:00
|
|
|
<a href="print.html">
|
|
|
|
<i id="print-button" class="fa fa-print" title="Print this book"></i>
|
|
|
|
</a>
|
2015-09-05 17:40:40 +08:00
|
|
|
</div>
|
2015-08-01 23:21:05 +08:00
|
|
|
</div>
|
2015-08-04 04:09:26 +08:00
|
|
|
|
2015-08-01 20:12:55 +08:00
|
|
|
<div id="content" class="content">
|
|
|
|
{{{ content }}}
|
|
|
|
</div>
|
2015-07-29 03:01:13 +08:00
|
|
|
|
2015-08-31 23:09:18 +08:00
|
|
|
<!-- Mobile navigation buttons -->
|
|
|
|
{{#previous}}
|
2017-06-19 01:19:48 +08:00
|
|
|
<a rel="prev" href="{{link}}" class="mobile-nav-chapters previous">
|
2015-08-31 23:09:18 +08:00
|
|
|
<i class="fa fa-angle-left"></i>
|
|
|
|
</a>
|
|
|
|
{{/previous}}
|
|
|
|
|
|
|
|
{{#next}}
|
2017-06-19 01:19:48 +08:00
|
|
|
<a rel="next" href="{{link}}" class="mobile-nav-chapters next">
|
2015-08-31 23:09:18 +08:00
|
|
|
<i class="fa fa-angle-right"></i>
|
|
|
|
</a>
|
|
|
|
{{/next}}
|
|
|
|
|
|
|
|
</div>
|
2015-08-06 21:24:34 +08:00
|
|
|
|
2015-08-04 04:09:26 +08:00
|
|
|
{{#previous}}
|
2015-12-30 23:48:46 +08:00
|
|
|
<a href="{{link}}" class="nav-chapters previous" title="You can navigate through the chapters using the arrow keys">
|
2015-08-01 20:12:55 +08:00
|
|
|
<i class="fa fa-angle-left"></i>
|
|
|
|
</a>
|
2015-08-04 04:09:26 +08:00
|
|
|
{{/previous}}
|
2015-08-01 20:12:55 +08:00
|
|
|
|
2015-08-04 18:51:07 +08:00
|
|
|
{{#next}}
|
2015-12-30 23:48:46 +08:00
|
|
|
<a href="{{link}}" class="nav-chapters next" title="You can navigate through the chapters using the arrow keys">
|
2015-08-01 20:12:55 +08:00
|
|
|
<i class="fa fa-angle-right"></i>
|
|
|
|
</a>
|
2015-08-04 18:51:07 +08:00
|
|
|
{{/next}}
|
2015-08-01 20:12:55 +08:00
|
|
|
|
2015-07-29 03:01:13 +08:00
|
|
|
</div>
|
2015-07-19 20:02:21 +08:00
|
|
|
|
2015-09-14 01:16:11 +08:00
|
|
|
|
2015-09-14 02:03:34 +08:00
|
|
|
<!-- Local fallback for Font Awesome -->
|
|
|
|
<script>
|
|
|
|
if ($(".fa").css("font-family") !== "FontAwesome") {
|
|
|
|
$('<link rel="stylesheet" type="text/css" href="_FontAwesome/css/font-awesome.css">').prependTo('head');
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2016-04-02 10:46:05 +08:00
|
|
|
<!-- Livereload script (if served using the cli tool) -->
|
|
|
|
{{{livereload}}}
|
|
|
|
|
2017-05-16 13:05:21 +08:00
|
|
|
{{#if google_analytics}}
|
|
|
|
<script>
|
|
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
|
|
|
|
|
|
ga('create', '{{google_analytics}}', 'auto');
|
|
|
|
ga('send', 'pageview');
|
|
|
|
</script>
|
2017-06-29 12:35:20 +08:00
|
|
|
{{/if}}
|
2017-05-16 13:05:21 +08:00
|
|
|
|
2017-06-29 12:35:20 +08:00
|
|
|
{{#if playpens_editable}}
|
|
|
|
<script src="{{ ace_js }}" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script src="{{ editor_js }}" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script src="{{ mode_rust_js }}" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script src="{{ theme_dawn_js }}" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script src="{{ theme_tomorrow_night_js }}" type="text/javascript" charset="utf-8"></script>
|
|
|
|
{{/if}}
|
2017-05-16 13:05:21 +08:00
|
|
|
|
2017-09-14 04:17:23 +08:00
|
|
|
{{#if is_print}}
|
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
window.print();
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
{{/if}}
|
|
|
|
|
2015-09-05 23:26:17 +08:00
|
|
|
<script src="highlight.js"></script>
|
|
|
|
<script src="book.js"></script>
|
2015-07-19 06:08:38 +08:00
|
|
|
</body>
|
|
|
|
</html>
|