-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
23 lines (23 loc) · 889 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Knockout Code TV screencast examples</title>
<link rel="stylesheet" href="bootstrap.min.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1>Knockout Code TV screencast examples</h1>
<ul>
<li><a href="jquery-example.html">jQuery Example</a></li>
<li><a href="bindings-example.html">Bindings Example</a></li>
<li><a href="dependencies-example.html">Dependencies Example</a></li>
<li><a href="demos/1-simple-data-bind.html">Simple Data Bind</a></li>
<li><a href="demos/2-simple-observable.html">Simple Observable</a></li>
<li><a href="demos/3-counter.html">Counter</a></li>
<li><a href="demos/4-counter-with-reset.html">Counter With Reset</a></li>
<li><a href="demos/5-todo-list.html">Todo List</a></li>
</ul>
</div>
</body>
</html>