-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (74 loc) · 4.05 KB
/
index.html
File metadata and controls
94 lines (74 loc) · 4.05 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Auriculoterapia</title>
<meta name="format-detection" content="telephone=no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<!-- width=device-width, height=device-height, -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, target-densitydpi=device-dpi" />
<link rel="stylesheet" href="css/estils.css" /> <!-- Estils propis -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> <!-- FontAwesome -->
<!-- Estils i Javascripts de JQuery -->
<link rel="stylesheet" href="themes/HiTech.min.css" />
<link rel="stylesheet" href="themes/jquery.mobile.icons.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile.structure-1.4.2.min.css" />
<script src="js/jquery.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
<!--// -->
</head>
<body>
<script type="text/javascript" charset="utf-8" src="phonegap.js"></script> <!-- Llibreria PhoneGap -->
<script type="text/javascript" charset="utf-8" src="PushNotification.js"></script> <!-- Llibreria plugin Push -->
<script type="text/javascript" charset="utf-8" src="js/push.js"></script> <!-- Funcions PushWoosh -->
<script type="text/javascript">
app.initialize();
</script>
<div data-role="page" class="ui-responsive-panel" data-theme="b">
<div data-role="header" data-position="fixed">
<h1>Auriculoterapia</h1>
<a href="#nav-panel" data-icon="bars" data-iconpos="notext">Índice</a>
<div id="slider"></div>
</div><!-- /header -->
<div data-role="content" class="justifica">
<h2>Bienvenidos a la primera app de auriculoterapia</h2>
<h3>En las rees sociales...</h3>
<div class="ui-grid-b social">
<div class="ui-block-a"><p><a href="https://www.facebook.com/hitech.informatica"><i class="fa fa-facebook"></i> Facebook</a></p></div>
<div class="ui-block-b"><p><a href="#"><i class="fa fa-twitter"></i> Twitter</a></p></div>
<div class="ui-block-c"><p><a href="#"><i class="fa fa-youtube"></i> Youtube</a></p></div>
</div>
</div><!-- /content -->
<div class="footer">
<p>© 2014 HiTech Informàtica.<br/>Programación y diseño: <a href="//www.hitech-informatica.es" target="_blank">HiTech Informàtica</a></p>
</div><!-- /jqm-footer -->
<div data-role="panel" data-position="left" data-position-fixed="false" data-display="overlay" id="nav-panel" data-theme="b">
<!--<div data-role="panel" data-position="left" data-position-fixed="false" data-display="reveal" id="nav-panel" data-theme="a">-->
<ul data-role="listview" data-theme="a" data-divider-theme="a" style="margin-top:-16px;" class="nav-search">
<!--
<li data-icon="delete" style="background-color:#111;">
<a href="#" data-rel="close">Volver</a>
</li>
-->
<li>
<a href="index.html">Inicio</a>
</li>
<li>
<a href="http://www.hitech-informatica.es/1/">Capitulo 1</a>
</li>
<li>
<a href="http://www.mtc.es/1/">Capitulo 1 mtc</a>
</li>
<li>
<a href="#" onclick="openDeviceBrowser ('http://www.hitech-informatica.es/1/')">Capitulo 1 E</a>
</li>
<li>
<a href="contacto.html">Contacto</a>
</li>
</ul>
<!-- panel content goes here -->
</div><!-- /panel -->
</div><!-- /page -->
</body>
</html>