-
Notifications
You must be signed in to change notification settings - Fork 4
/
buses.html
110 lines (102 loc) · 4.73 KB
/
buses.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="http://srv6.cpanelhost.cl/~cto4361/santiago/img/apple-touch-icon-precomposed.png" rel="apple-touch-icon-precomposed" />
<link href="img/logo.png" rel="apple-touch-icon-precomposed" />
<link href="img/logo.png" rel="apple-touch-icon-precomposed" sizes="72x72" />
<link href="img/logo.png" rel="apple-touch-icon-precomposed" sizes="114x114" />
<link href="img/logo.png" rel="apple-touch-icon-precomposed" sizes="144x144" />
<title>Buses UAI</title>
<link rel="stylesheet" href="css/jquery.mobile-1.4.0-alpha.1.min.css" />
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/jquery.mobile-1.4.0-alpha.1.min.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30603139-1']);
_gaq.push(['_setDomainName', 'salasuai.com']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div data-role="page" id="Grecia">
<div data-theme="a" data-role="header">
<a data-role="button" data-inline="true" data-transition="none" href="buses.html" data-icon="arrow-l" data-iconpos="left">
Volver
</a>
<h3>
Buses UAI
</h3>
</div>
<div data-theme="a" data-role="header">
<h3>
Grecia
</h3>
</div>
<div data-role="content">
<div data-role="collapsible-set" data-theme="" data-content-theme="">
<div data-role="collapsible" data-collapsed="true">
<h3>
Ida
</h3>
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-theme="c">
8:15 AM
</li>
</ul>
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-theme="c">
13:30 AM
</li>
</ul>
</div>
</div>
<div data-role="collapsible-set" data-theme="" data-content-theme="">
<div data-role="collapsible" data-collapsed="true">
<h3>
Regreso
</h3>
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-theme="c">
13:10 AM
</li>
</ul>
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-theme="c">
17:15 AM
</li>
</ul>
</div>
</div>
</div>
<div data-theme="a" data-role="footer" data-position="fixed">
<div data-role="navbar" data-iconpos="top" data-id="menu">
<ul>
<li>
<a href="index.php" data-theme="" rel="external" data-icon="home" data-transition="none" >
Salas
</a>
</li>
<li>
<a href="buses.html" data-theme="" rel="external" data-icon="info" data-transition="none" class="ui-btn-active ui-state-persist">
Buses
</a>
</li>
<li>
<a href="deportes.php" data-theme="" rel="external" data-icon="star" data-transition="none">
Deportes
</a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>