-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (109 loc) · 4.58 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
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
<!DOCTYPE html>
<html>
<head>
<title>Checklist Application</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="jquery.mobile-1.3.1.min.css">
<script src="jquery-2.0.0.min.js"></script>
<script src="jquery.mobile-1.3.1.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-41913484-1', 'tejwc.github.io');
ga('send', 'pageview');
</script>
</head>
<body>
<!--Homepage-->
<div data-role="page" id="home" data-title="Tej's Unofficial Checklist App Homepage">
<div data-role="header" data-theme="b">
<h1>Tej's Unofficial Checklist App Homepage</h1>
</div> <!-- /header -->
<div data-role="content">
<ul data-role="listview">
<li><a href="#exams" data-transition="slide">Exam Checklists</a></li>
<li><a href="#pros" data-transition="slide">Procedure Checklists</a></li>
<li><a href="#temps" data-transition="slide">Templates</a></li>
<li><a href="#docs" data-transition="slide">Documents</a></li>
<li><a href="#about" data-transition="slide">About</a></li>
</ul>
</div><!-- / home content -->
<div data-role="footer" data-position="fixed" data-theme="b">
<h4>Version 0.08 Beta</h4>
</div>
</div><!-- /home page -->
<!--Exam List-->
<div data-role="page" id="exams">
<div data-role="header" data-theme="b">
<h1>Exams</h1>
<a href="#home" data-icon="home" data-iconpos="notext" data-rel="back">Home</a>
</div> <!-- /header -->
<div data-role="content">
<ul data-role="listview">
<li><a href="npe.html" rel="external">0110: New Patient Exam (Group 7)</a></li>
<li><a href="120.html" rel="external">0120/0121: Transfer Exam</a></li>
<li><a href="150.html" rel="external">0150: New Patient Comprehensive</a></li>
</ul>
</div><!-- /exam content -->
</div><!-- /exam page -->
<!--Procedures List-->
<div data-role="page" id="pros">
<div data-role="header" data-theme="b">
<h1>Procedures</h1>
<a href="#home" data-icon="home" data-iconpos="notext" data-rel="back">Home</a>
</div> <!-- /header -->
<div data-role="content">
<ul data-role="listview">
<li><a href="1110.html" rel="external">D1110: Adult Prophylaxis</a></li>
<li><a href="2100.html" rel="external">D2100: Amalgam Restoration</a></li>
</ul>
</div><!-- /Procedures content -->
</div><!-- /Procedures page -->
<!--Template List-->
<div data-role="page" id="temps">
<div data-role="header" data-theme="b">
<h1>Templates</h1>
<a href="#home" data-icon="home" data-iconpos="notext" data-rel="back">Home</a>
</div> <!-- /header -->
<div data-role="content">
<ul data-role="listview">
<li><a href="perioTempInit.html" rel="external">Periodontal Examination (inital)</a></li>
<li><a href="perioTempRecare.html" rel="external">Periodontal Examination (recare)</a></li>
<li><a href="perioTempPhase1.html" rel="external">Eval Phase I Therapy Notes</a></li>
<li><a href="medSummary.html" rel="external">Medical Summary (Group Practice 7)</a></li>
<li><a href="scrp.html" rel="external">Scaling and root planing</a></li>
<li><a href="prophy.html" rel="external">Prophy</a></li>
<li><a href="crownPrep.html" rel="external">Crown Prep</a></li>
<li><a href="amalgam.html" rel="external">Amalgam</a></li>
<li><a href="composite.html" rel="external">Composite</a></li>
</ul>
</div><!-- /Template content -->
</div><!-- /Template page -->
<!--Documents List-->
<div data-role="page" id="docs">
<div data-role="header" data-theme="b">
<h1>Documents</h1>
<a href="#home" data-icon="home" data-iconpos="notext" data-rel="back">Home</a>
</div> <!-- /header -->
<div data-role="content">
<ul data-role="listview">
<li><a href="prices.html" rel="external">UG Clinic Fees and Points</a></li>
</ul>
</div><!-- /Documents content -->
</div><!-- /Documents page -->
<!--About-->
<div data-role="page" id="about">
<div data-role="header" data-theme="b">
<h1>About Unofficial Checklist App</h1>
<a href="#home" data-icon="home" data-iconpos="notext" data-rel="back">Home</a>
</div> <!-- /header -->
<div data-role="content">
<h3>Website made by <a href="mailto:[email protected]">Tej A. Shah</a>. Please contact him with any changes or if you wish to add new material.</h3>
<h5>This web app is NOT endorsed by the Tufts School of Dental Medicine. Use at your own risk.</h5>
</div><!-- /Procedures content -->
</div><!-- /Procedures page -->
</body>
</html>