-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtemplate.php
41 lines (39 loc) · 1.08 KB
/
template.php
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
<html>
<head>
<title>RobinForest.net</title>
<script src="js/processing-1.4.1.js"></script>
<script src="js/jquery-1.9.1.min.js" type='text/javascript'></script>
<script src="js/underscore-min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!--- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<style>
body {
padding-top: 60px;
}
</style>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<span class='brand'>Cool Programs by Robin Hu</span>
<div class='nav-collapse collapse'>
<ul class='nav'>
<li><a href='forest-d3/'>Charting Library</a></li>
<li><a href='index.php'>Cellular Automata</a></li>
<li><a href='coins.php'>Change Calculator</a></li>
<li><a href='mandelbrot.php'>Mandelbrot</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class='container'>
<?php echo $YIELD; ?>
</div>
<div class='footnote text-center'>
<small>© Robin Hu. All Rights Reserved.</small>
</div>
</body>
</html>