-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.template
99 lines (89 loc) · 2.47 KB
/
index.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
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
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title>$title$</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="shortcut icon" href="images/favicon.ico" />
<style>
li {
font-size: 1.1em;
line-height: 1.5em;
}
ol a, ul a {
text-decoration: none;
}
ul {
list-style-type: none;
padding-left: 0.5em
}
li a {
text-decoration: none;
}
#header {
width: 100%;
padding: 1.5em 0em 1.5em 0em;
text-align: center;
margin-bottom: 0;
color: white
}
#title {
font-family: 'Crimson Text', Crimson, Times, serif;
font-size: 50px;
text-shadow: 1px 1px 2px #666;
}
#authors {
font-family: 'Crimson Text', Crimson, Times, serif;
font-size: 20px;
/* text-shadow: 1px 1px black */
}
#chapter {
padding-top: 1px
}
.columns-container {
width: 100%;
}
.left-column {
width: 48%;
float: left;
}
.right-column {
width: 48%;
float: right;
}
.clear {
clear: both
}
</style>
<script src="scripts/underscore-min.js"></script>
<script src="scripts/jquery.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>
<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" />
</head>
<body>
<div id="chapter-wrapper">
<div id='header'>
<span id='title'>Probabilistic Models of Cognition</span><br>
<span id='authors'><i style='opacity: 0.5'>by</i> Noah D. Goodman <i style='opacity: 0.5'>and</i> Joshua B. Tenenbaum</span>
</div>
<div id="chapter">
$body$
</div>
</div>
</body>
<script>
(function() {
(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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-44328902-1', 'probmods.org');
ga('send', 'pageview');
})();
</script>
</html>