2015-07-19 06:08:38 +08:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html lang="{{ language }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
|
|
|
|
<meta name="description" content="{% block description %}{% endblock %}">
|
|
|
|
<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">
|
2015-07-29 03:01:13 +08:00
|
|
|
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
|
2015-09-14 02:03:34 +08:00
|
|
|
|
|
|
|
<!-- Font Awesome -->
|
2015-07-29 03:01:13 +08:00
|
|
|
<link rel="stylesheet" href="http://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">
|
2015-09-05 23:26:17 +08:00
|
|
|
|
2015-09-11 05:30:29 +08:00
|
|
|
<!-- MathJax -->
|
|
|
|
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
|
2015-09-15 00:12:45 +08:00
|
|
|
|
|
|
|
<!-- Fetch JQuery from CDN but have a local fallback -->
|
|
|
|
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
|
|
<script>
|
|
|
|
if (typeof jQuery == 'undefined') {
|
|
|
|
document.write(unescape("%3Cscript src='jquery.js'%3E%3C/script%3E"));
|
|
|
|
}
|
|
|
|
</script>
|
2015-07-19 06:08:38 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
2015-09-15 00:12:45 +08:00
|
|
|
<!-- Set the theme before any content is loaded, prevents flash -->
|
|
|
|
<script type="text/javascript">
|
|
|
|
var theme = localStorage.getItem('theme');
|
|
|
|
if (theme == null) { theme = 'light'; }
|
|
|
|
$('body').removeClass().addClass(theme);
|
|
|
|
</script>
|
2015-07-19 20:02:21 +08:00
|
|
|
|
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">
|
|
|
|
|
2015-08-01 20:12:55 +08:00
|
|
|
<div class="page">
|
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>
|
|
|
|
|
2015-08-01 23:21:05 +08:00
|
|
|
<h1 class="menu-title">{{ title }}</h1>
|
2015-09-05 17:40:40 +08:00
|
|
|
|
|
|
|
<div class="right-buttons">
|
|
|
|
<i id="print-button" class="fa fa-print" title="Print this book"></i>
|
|
|
|
</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}}
|
|
|
|
<a href="{{link}}" class="mobile-nav-chapters previous">
|
|
|
|
<i class="fa fa-angle-left"></i>
|
|
|
|
</a>
|
|
|
|
{{/previous}}
|
|
|
|
|
|
|
|
{{#next}}
|
|
|
|
<a href="{{link}}" class="mobile-nav-chapters next">
|
|
|
|
<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}}
|
|
|
|
<a href="{{link}}" class="nav-chapters previous">
|
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}}
|
|
|
|
<a href="{{link}}" class="nav-chapters next">
|
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>
|
|
|
|
|
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>
|