-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·70 lines (62 loc) · 3.55 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
<!DOCTYPE html>
<!--[if IEMobile 7 ]> <html class="no-js iem7"> <![endif]-->
<!--[if (gt IEMobile 7)|!(IEMobile)]><!--> <html class="no-js" manifest="cache.appcache"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Midwifery Calc</title>
<meta name="description" content="">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="cleartype" content="on">
<!-- non-retina iPhone pre iOS 7 -->
<link rel="apple-touch-icon" href="img/touch/AppIcon60x60.png" sizes="57x57">
<!-- non-retina iPad pre iOS 7 -->
<link rel="apple-touch-icon" href="img/touch/AppIcon76x76.png" sizes="72x72">
<!-- non-retina iPad iOS 7 -->
<link rel="apple-touch-icon" href="img/touch/AppIcon76x76.png" sizes="76x76">
<!-- retina iPhone pre iOS 7 -->
<link rel="apple-touch-icon" href="img/touch/[email protected]" sizes="114x114">
<!-- retina iPhone iOS 7 -->
<link rel="apple-touch-icon" href="img/touch/[email protected]" sizes="120x120">
<!-- retina iPad pre iOS 7 -->
<link rel="apple-touch-icon" href="img/touch/[email protected]" sizes="144x144">
<!-- retina iPad iOS 7 -->
<link rel="apple-touch-icon" href="img/touch/[email protected]" sizes="152x152">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Midwifery Calc">
<!-- This script prevents links from opening in Mobile Safari. https://gist.github.com/1042026 -->
<!--
<script>(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&&(d.href.indexOf("http")||~d.href.indexOf(e.host))&&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone")</script>
-->
<!-- //-beg- concat_css -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<!-- //-end- concat_css -->
</head>
<body>
<div class="inputs">
<label for="lmp_date" class="ui_label">LMP Date</label>
<input type="date" id="lmp_date" name="lmp_date" class="ui_input ui_date js_input" placeholder="Pick a Date">
<label for="cycle_length" class="ui_label">Cycle Length</label>
<input type="number" id="cycle_length" name="cycle_length" class="ui_input ui_text js_input" value="28">
</div>
<div class="results">
<div class="result result_edc" id="result_edc">None</div>
<div class="result result_gst" id="result_gst">None</div>
</div>
<!-- //-beg- concat_js -->
<script src="js/vendor/zepto.min.js"></script>
<script src="js/vendor/moment.js"></script>
<script src="js/main.js"></script>
<!-- //-end- concat_js -->
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<!-- <script>
var _gaq=[["_setAccount","UA-XXXXX-X"],["_trackPageview"]];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js";
s.parentNode.insertBefore(g,s)}(document,"script"));
</script> -->
</body>
</html>