forked from jeffThompson/CollisionDetection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-template.html
49 lines (41 loc) · 1.69 KB
/
page-template.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
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="image/png" href="http://www.jeffreythompson.org/graphics/favicon.png">
<title>Collision Detection</title>
<!-- FONTS AND CSS -->
<link href="https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i|Raleway:400,600,800" rel="stylesheet">
<link href="css/stylesheet.css" rel="stylesheet" />
<link href="css/atom-light.css" rel="stylesheet" />
</head>
<body>
<header>
<div class="flex">
{{ prev }}
<span id="title">
<a href="index.html">Collision Detection</a><br/>
<a href="table_of_contents.html"><small>Table of Contents</small></a>
</span>
{{ next }}
</div>
</header>
<div id="sketch" hidden></div>
<div id="wrapper">
<main>
{{ markdown }}
</main>
<footer>
<p>[ <a href="./index.html">intro</a>, <a href="https://github.com/crhallberg/CollisionDetection">source</a>, <a href="https://github.com/crhallberg/CollisionDetection/issues">issues</a> ]</p>
<p><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" src="https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png" style="width:80px; height:15px" /></a></a>
</footer>
</div>
<!-- nice smart quotes, via: http://smartquotesjs.com -->
<script src="js/smartquotes.min.js"></script>
<!-- p5.js -->
<script src="js/p5.min.js"></script>
<script>{{ code }}</script>
</body>
</html>