-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
54 lines (39 loc) · 1.79 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>g5-knockout-dot.js</title>
<link rel="stylesheet" href="src/static/bundle.css" />
</head>
<body>
<section id="component--linescore" data-bind="template: { name: 'main-template' }"></section>
<!-- bundled JS -->
<script src="src/static/bundle.js"></script>
<!-- main template -->
<script type="text/html" id="main-template">
<section
class="{{=it.$data.g5knockout_attr.class()}}"
data-g5knockout-instance="{{=it.$data.g5knockout_attr.instance()}}"
data-g5knockout-visible="{{=it.$data.g5knockout_attr.visible()}}"
data-g5knockout-bound="{{=it.$data.g5knockout_attr.bound()}}">
{{? it.$data.collection() }}
<section class="{{=it.$data.collection().subject}}">
<dl>
<dt><strong>Home Team</strong></dt>
<dd>{{=it.$data.collection().data.game.home_team_name}}</dd>
<dt><strong>Location</strong></dt>
<dd>{{=it.$data.collection().data.game.location}}</dd>
<dt><strong>Game Date</strong></dt>
<dd>{{=it.$data.collection().data.game.original_date}}</dd>
<dt><strong>Game Time</strong></dt>
<dd>{{=it.$data.collection().data.game.time}}</dd>
</dl>
</section>
<article>
<small>{{=it.$data.collection().copyright}}</small>
</article>
{{?}}
</section>
</script>
</body>
</html>