-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog.html
More file actions
58 lines (56 loc) · 1.95 KB
/
catalog.html
File metadata and controls
58 lines (56 loc) · 1.95 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Examples</title>
<style type="text/css">
table {
border-collapse: collapse;
}
td {
padding:1em;
border:1px solid #CCC;
}
</style>
</head>
<body>
<table>
<tr>
<td><a href="./hello-world.html">Hello-World (Quick Start version)</a></td>
<td>The hello, world quick start.</td>
</tr>
<tr>
<td><a href="./hello-world-amd.html">Hello-World (Quick Start AMD version)</a></td>
<td>The hello, world, AMD quick start.</td>
</tr>
<tr>
<td><a href="./hello-world/index.html">Hello-World</a></td>
<td>The hello, world demonstration <a href="">discussed in the tutorial</a></td>
</tr>
<tr>
<td><a href="./dialog/index.html">Dialog</a></td>
<td>Demonstrates everybody's favorite chore--building a a dialog box--using the <a href="">backdraft widget library</a>.</td>
</tr>
<tr>
<td><a href="./schedule/index.html">Schedule</a></td>
<td>A sortable Little League schedule, demonstrating how easy it is to build non-trivial components and grids, with Backdraft.</td>
</tr>
<tr>
<td><a href="./polygraph/index.html">Polygraph</a></td>
<td>The Vue polygraph demo, ported to Backdraft.</td>
</tr>
<tr>
<td><a href="./thinking-in-backdraft/index.html">Thinking-in-Backdraft</a></td>
<td>The React "thinking-in" demo, ported to Backdraft</td>
</tr>
<tr>
<td><a href="./js-framework-benchmark/index.html">js-framework-benchmark</a></td>
<td>The <a href="https://github.com/krausest/js-framework-benchmark">js-framework-benchmark</a> exercise, ported to Backdraft</td>
</tr>
<tr>
<td><a href="./todomvc/index.html">TodoMVC</a></td>
<td>The <a href="http://todomvc.com/">TodoMVC</a> exercise, ported to Backdraft</td>
</tr>
</table>
</body>
</html>