This repository was archived by the owner on Feb 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
117 lines (105 loc) · 5.08 KB
/
Copy pathindex.php
File metadata and controls
117 lines (105 loc) · 5.08 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
include 'src/GtaRSSParcer.php';
$rss = new GtaRSSParser('http://www.utbvirtual.edu.co/centro-de-noticias/boletin/rss.xml');
?>
<!DOCTYPE html>
<html>
<head>
<title>SAVIO Móvil</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link type="text/css" rel="stylesheet" media="all" href="style.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile.structure-1.0rc2.min.css" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<script src="js/jquery.js"></script>
<script src="js/jquery.mobile.js"></script>
</head>
<body>
<div data-role="page" id="novedades" data-theme="c">
<div data-role="header" data-position="fixed">
<!--<img src="http://www.utbvirtual.edu.co/images/logoutb.png" />-->
<div data-role="navbar" class="ui-state-persist">
<ul>
<li><a href="#novedades" class="ui-btn-active">Novedades</a></li>
<li><a href="#savio">SAVIO</a></li>
<li><a href="#soporte">Soporte</a></li>
</ul>
</div>
</div>
<div data-role="content">
<div data-role="collapsible-set">
<?php
$item = $rss->getItem();
?>
<div data-role="collapsible" data-collapsed="false">
<h3><?php echo $item->title; ?></h3>
<p><?php echo $item->description; ?></p>
</div>
<?php
//$rss->getItemsCount()
for ($i = 2; $i <= 4; $i++) {
$item = $rss->getItem();
?>
<div data-role="collapsible">
<h3><?php echo $item->title; ?></h3>
<p><?php echo $item->description; ?></p>
</div>
<?php
}
?>
</div>
</div>
<div data-role="footer" data-position="fixed">
Universidad Tecnológica de Bolívar 2011 - <?php echo date("F d Y H:i:s.", $rss->getCached()); ?>
</div>
</div>
<!-- Start of second page: #savio -->
<div data-role="page" id="savio" data-theme="c">
<div data-role="header" data-position="fixed">
<div data-role="navbar" class="ui-state-persist" data-theme="b">
<ul>
<li><a href="#novedades">Novedades</a></li>
<li><a href="#savio" class="ui-btn-active">SAVIO</a></li>
<li><a href="#soporte">Soporte</a></li>
</ul>
</div>
</div><!-- /header -->
<div data-role="content" data-theme="c">
<h2>Datos de acceso:</h2>
<form action="http://aulas2.utbvirtual.edu.co/login/index.php" method="post" data-ajax="false" class="ui-body ui-body-a ui-corner-all">
<div data-role="fieldcontain">
<label for="username">Usuario:</label>
<input type="text" name="username" id="username" value="" />
</div>
<div data-role="fieldcontain">
<label for="password">Contraseña:</label>
<input type="password" name="password" id="password" value="" />
</div>
<button type="submit" data-theme="c" name="submit" value="submit-value">Ingresar</button>
</form>
</div><!-- /content -->
<div data-role="footer" data-position="fixed">
Universidad Tecnológica de Bolívar 2011
</div><!-- /footer -->
</div><!-- /page savio -->
<!-- Start of second page: #soporte -->
<div data-role="page" id="soporte" data-theme="c">
<div data-role="header" data-position="fixed">
<div data-role="navbar" class="ui-state-persist">
<ul>
<li><a href="#novedades" data-direction="reverse">Novedades</a></li>
<li><a href="#savio" data-direction="reverse">SAVIO</a></li>
<li><a href="#soporte" data-direction="reverse" class="ui-btn-active">Soporte</a></li>
</ul>
</div>
</div><!-- /header -->
<div data-role="content" data-theme="c">
<iframe class="autoHeight" src="http://www.utbvirtual.edu.co/dev_support/" id="support-frame" frameborder="0" height="1024" scrolling="auto" width="100%">
</iframe>
<p></p>
</div><!-- /content -->
<div data-role="footer" data-position="fixed">
Universidad Tecnológica de Bolívar 2011
</div><!-- /footer -->
</div><!-- /page soporte -->
</body>
</html>