-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (62 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<title>Ossus</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="publisher" content="Pascal Pfiffner" />
<meta name="author" content="Pascal Pfiffner" />
<meta name="robots" content="index,follow" />
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0" />
<link rel="stylesheet" type="text/css" href="static/style.css" />
<link rel="icon" href="images/favicon.png" type="image/png" />
</head>
<body>
<div id="full" onclick="toggleCircus()">
<div id="circus-logo-190"></div>
<div id="circus-logo-300"></div>
<div id="circus-wrap">
<ul id="circus"></ul>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="static/main.min.js"></script>
<script type="text/javascript">
var _data = {
'MedCalX': {
'url': "http://www.medcalx.ch/",
'desc': "MedCalX is the professional medical calculator for iOS, built with Mathias Tschopp."
},
'MyStudies': {
'url': "https://www.mystudies.org/",
'desc': "Clinical study results at your fingertips!"
},
'GrowthCharts': {
'name': "Growth Charts",
'url': "http://p2.github.com/growth-charts/index",
'desc': "A pediatric growth charts app for iOS, built at Boston Children's Hospital."
},
'Eponyms': {
'url': "http://code.hillrippers.ch/eponyms/",
'desc': "Medical eponyms database, in collaboration with <i>Andrew J. Yee</i>. Available as iOS and Android app as well as via the web."
},
'KidneyCalc': {
'url': "http://kidneycalc.ossus.ch/",
'desc': "An iOS dosage calculator that helps you adjust medication dosages based on renal function. Built in collaboration with James McCormack."
},
'MacEponyms': {
'name': "Mac Eponyms",
'url': "https://itunes.apple.com/ch/app/eponyms/id420610970?l=en&mt=12",
'desc': "The eponyms app for Mac OS X."
},
'About': {
'name': "About Ossus",
'url': "about"
}
}
// setup the circus
$(document).ready(function() {
setupCircus();
});
</script>
</body>
</html>