forked from davilima6/clips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (102 loc) · 4.22 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Python Brasil - 6ª Edição</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css" />
<link rel="stylesheet" href="css/styles.css" />
<script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
</head>
<body>
<div data-role="page" data-theme="a" id="home">
<div data-role="header">
<h1>
<a href="#home">
<img src="images/logo-fisl-2012.png" alt="Logo FISL 2012" />
</a>
</h1>
<a href="#login" data-icon="gear" data-rel="dialog" data-transition="slidedown" class="ui-btn-right">Login</a>
<a href="#igo" data-icon="star">Eu vou!</a>
<p>FISL 2012 - Fórum Internacional de Software Livre</p>
</div>
<div data-role="content">
<p><a href="#search" data-role="button" data-icon="search">Busca</a></p>
<ul data-role="listview" data-inset="true" data-dividertheme="e">
<li data-role="list-divider">Programação</li>
<li><a href="talks.html">Agora! <span class="ui-li-count">12</span> </a></li>
<li><a href="talks.html#by-day">Por dia <span class="ui-li-count">4</span></a></li>
<li><a href="talks.html#by-track">Por trilha <span class="ui-li-count">7</span></a></li>
<li><a href="talks.html#by-room">Por sala <span class="ui-li-count">12</span></a></li>
</ul>
<ul data-role="listview" data-inset="true">
<li><a href="my-event.html">Meu evento</a></li>
<li><a href="twitter.html">Twitter</a></li>
<li><a href="sponsors.html">Patrocinadores</a></li>
</ul>
</div>
<div data-role="footer">
<p>FISL 2012 - Fórum Internacional de Software Livre</p>
</div>
</div>
<div data-role="page" data-theme="a" id="talks">
<div data-role="header">
<h1>
<a href="#home" data-rel="back" data-direction="reverse">
<img src="images/logo-fisl-2012.png" alt="Logo FISL 2012" border="0" />
</a>
</h1>
<p>Palestras</p>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true" data-dividertheme="e">
<li data-role="list-divider">Palestras</li>
<li><a href="talks-now.html">Agora!</a></li>
<li><a href="talks-by-day.html">Por dia</a></li>
<li><a href="talks-by-zone.html">Por trilha</a></li>
<li><a href="talks-by-room.html">Por sala</a></li>
<li><a href="talks-by-speaker.html">Por palestrante</a></li>
</ul>
<ul data-role="listview" data-inset="true">
<li><a href="my-event.html">Meu evento</a></li>
<li><a href="twitter.html">Twitter</a></li>
<li><a href="sponsors.html">Patrocinadores</a></li>
</ul>
</div>
<div data-role="footer">
<p>FISL 2012 - Fórum Internacional de Software Livre</p>
</div>
</div>
<div data-role="page" data-theme="a" id="search">
<div data-role="header">
<h1>
<a href="#home" data-rel="back" data-direction="reverse">
<img src="images/logo-fisl-2012.png" alt="Logo FISL 2012" border="0" />
</a>
</h1>
<p>Busca</p>
</div>
<div data-role="content">
<div class="ui-input-search ui-shadow-inset ui-btn-corner-all ui-btn-shadow ui-icon-searchfield ui-body-c ui-focus"><input type="true" data-type="search" name="password" id="search" value="" class="ui-input-text ui-body-null"><a href="#" class="ui-input-clear ui-btn ui-btn-up-c ui-btn-icon-notext ui-btn-corner-all ui-shadow ui-input-clear-hidden" title="clear text" data-theme="c"><span class="ui-btn-inner ui-btn-corner-all"><span class="ui-btn-text">clear text</span><span class="ui-icon ui-icon-delete ui-icon-shadow"></span></span></a></div>
</div>
<div data-role="footer">
<p>FISL 2012 - Fórum Internacional de Software Livre</p>
</div>
</div>
<div data-role="page" data-theme="a" id="login">
<div data-role="header">
<h1>
<a href="#home" data-rel="back" data-direction="reverse">
<img src="images/logo-fisl-2012.png" alt="Logo FISL 2012" border="0" />
</a>
</h1>
<p>Login</p>
</div>
<div data-role="content">
</div>
<div data-role="footer">
<p>FISL 2012 - Fórum Internacional de Software Livre</p>
</div>
</div>
</body>
</html>