-
Notifications
You must be signed in to change notification settings - Fork 26
/
chapter.template
60 lines (58 loc) · 2.36 KB
/
chapter.template
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
<!DOCTYPE html>
<html>
<head>
<title>ProbMods: $title$</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="webchurch/online/css/codemirror.css">
<link rel="stylesheet" type="text/css" href="webchurch/online/css/d3.css">
<link rel="shortcut icon" href="images/favicon.ico" />
<script src="scripts/underscore-min.js"></script>
<script src="scripts/jquery.js"></script>
<link class="katex-include" rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/KaTeX/0.5.1/katex.min.css">
<script class="katex-include" src="//cdnjs.cloudflare.com/ajax/libs/KaTeX/0.5.1/katex.min.js"></script>
<script src="scripts/cookies-0.3.1.min.js"></script>
<script src="scripts/gg.js"></script>
<script src="scripts/nav.js"></script>
<script src="scripts/cosmetics.js"></script>
<script src="scripts/md5.js"></script>
<script src="webchurch/online/webchurch.min.js"></script>
<script src="scripts/globals.js"></script>
<script src="webchurch/online/vega.min.js"></script>
<script src="scripts/new-injector.js"></script>
<script src="scripts/headroom.min.js"></script>
</head>
<body>
<div id="chapter-wrapper">
<div id='header' class="headroom">
<div id='logotype'><a href="index.html">Probabilistic Models of Cognition</a></div>
<ul id="nav">
<span class="nav0"><li class="all-chapters">All chapters
<!-- _chapterlist_ -->
</li></span>
<a class="nav0" href="/login"><li id="login-link">Login</li></a>
<!-- <a class="nav0" href="/profile"><li id="profile-link" style='display: none'>Profile</li></a> -->
<a class="nav0" href="/logout"><li id="logout-link" style='display: none'>Logout</li></a>
</ul>
<div class="clear"></div>
</div>
<div id="chapter">
<h1 id="chapter-title"><!-- _chapternum_ --> $title$</h1>
$if(author)$
<p class='authors'>By: $for(author)$$author$$sep$, $endfor$</p>
$endif$
$if(toc)$
<div class='toc'>
<div class='name'>Contents:</div>
$toc$
</div>
$endif$
$body$
</div>
</div>
</body>
<script src="scripts/after-body.js"></script>
</html>