-
Notifications
You must be signed in to change notification settings - Fork 31
/
index.html
40 lines (36 loc) · 847 Bytes
/
index.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
<html>
<head>
<title>The Render Engine</title>
<style type="text/css">
body {
font: 16pt Arial;
}
a {
text-decoration: none;
}
ul {
list-style: none;
}
ul li {
margin-bottom: 10px;
}
</style>
<script type="text/javascript" src="engine/libs/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("ul li").each(function(){
var loc = $(this).attr("loc");
var html = "<a href='" + loc + "'>" + $(this).text() + "</a>";
$(this).html(html);
});
});
</script>
</head>
<body>
<em>The Render Engine</em>
<ul>
<li loc="demos/index.html">Render Engine Demos</li>
<li loc="tutorials/index.html">Render Engine Code Tutorials</li>
</ul>
</body>
</html>