-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html (kopie)
142 lines (128 loc) · 3.93 KB
/
index.html (kopie)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>seniorfone prototype</title>
<link rel="stylesheet" href="css/themes/default/jquery.mobile-1.2.0.css" />
<link rel="stylesheet" href="css/custom.css" />
<script src="js/jquery-1.8.2.js"></script>
<script src="js/jquery.mobile-1.2.0.js"></script>
</head>
<body>
<div data-role="page" id="home" class="sfpage">
<div data-role="content">
<ul data-role="listview" class="listview2">
<li class="center-wrapper">
<div class="center">
home screen
<br/>
[date/time here]
</div>
</li>
<li class="center-wrapper">
<div>
<div class="ui-grid-b">
<div class="ui-block-a">
<a data-role="button" data-transition="slide" href="#dial1">[dial image]</a>
</div>
<div class="ui-block-b"><a data-role="button" data-transition="slide" href="#contact1">[contact image]</a>
</div>
<div class="ui-block-c"><a data-role="button" data-transition="slide" href="#emergency1">[emergency image]</a>
</div>
<div class="ui-block-a">
<a data-role="button" data-transition="slide" href="#events">[events image]</a>
</div>
<div class="ui-block-b"><a data-role="button" data-transition="slide" href="#memo">[memo image]</a>
</div>
<div class="ui-block-c"><a data-role="button" data-transition="slide" href="#weather">[weather image]</a>
</div>
</div>
</div>
</li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="dial1" class="sfpage">
<div data-role="content">
<ul data-role="listview" class="listview2">
<li class="center-wrapper">
<div class="center">
dial screen
<br/>
[some image here]
</div>
</li>
<li class="center-wrapper">
<div class="center"><a data-role="button" data-transition="slide" href="#dial2">[big dial image/button here]</a>
</div>
</li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="dial2" class="sfpage">
<div data-role="content">
<p>TODO:dial screen with numpad</p>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="contact1" class="sfpage">
<div data-role="content">
<ul data-role="listview" class="listview2">
<li class="center-wrapper">
<div class="center">
contact screen
<br/>
[some image here]
</div>
</li>
<li class="center-wrapper">
<div class="center"><a data-role="button" data-transition="slide" href="#contact2">[big contact image/button here]</a>
</div>
</li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="contact2" class="sfpage">
<div data-role="content">
<p>TODO:contact screen</p>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="emergency1" class="sfpage">
<div data-role="content">
<ul data-role="listview" class="listview2">
<li class="center-wrapper">
<div class="center">
emergency screen
<br/>
[some image here]
</div>
</li>
<li class="center-wrapper">
<div class="center"><a data-role="button" data-transition="slide" href="#emergency2">[big emergency image/button here]</a>
</div>
</li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="emergency2" class="sfpage">
<div data-role="content">
<p>TODO:emergency screen</p>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="events" class="sfpage">
<div data-role="content">
<p>TODO:events screen</p>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="memo" class="sfpage">
<div data-role="content">
<p>TODO:memo screen</p>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="weather" class="sfpage">
<div data-role="content">
<p>TODO:weather screen</p>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>