-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (115 loc) · 5.98 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
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=medium-dpi" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<link rel="stylesheet" type="text/css" href="css/jquery.mobile.css" />
<link rel="stylesheet" type="text/css" href="css/jquery.mobile.theme.css" />
<!-- MUSTACHE -->
<script type="text/javascript" src="./js/mustache.min.js"></script>
<script type="text/javascript" src="./js/mustache-wax.min.js"></script>
<!-- MUSTACHE FORMATTER EXTENSION -->
<script type="text/javascript" src="./js/mustache-formatters.js"></script>
<title>Achab Open Forum 2015</title>
</head>
<!-- template for date list (ul with class="daysInAgenda") -->
<script id="dateListTemplate" type="text/template">
{{#days}}
<li><a id="{{groupLabel}}" data-transition="none" class="dayInAgenda ui-link ui-btn">{{groupLabel | dayOfWeekAndMounth}}</a></li>
{{/days}}
</script>
<!-- template for title list (ul with class="itemsInAgenda") -->
<script id="titleListTemplate" type="text/template">
{{#titlesGroup}}
<li data-corners="false" data-shadow="false" data-wrapperels="div" data-theme="c" class="titleInAgenda" id="title-{{startDate | titleId}}">
<div class="agendaTitle" id="{{startDate}}-{{endDate}}">{{startDate | time}} - {{endDate | time}}<br><span>{{title}}</span></div>
<div class="agendaDetail" id="details-{{startDate}}-{{endDate}}">
<a id="link-{{startDate}}-{{endDate}}" data-transition="none" class="itemDescription navicon right-icon"><span class="hide">View details</span></a>
<div id="shortDesc-{{startDate}}-{{endDate}}" class="shortDesc">{{description | lpad | leftN}}</div>
{{#speakers}}
<p>
<a id="{{name | lowercase}}-{{lastname | lowercase}}" data-transition="none" class="speaker">{{name}} {{lastname}}</a>,
<em id="speakerTitle">{{title}}</em>
</p>
{{/speakers}}
</div>
</li>
{{/titlesGroup}}
</script>
<!-- template for event details -->
<script id="eventTemplate" type="text/template">
<div class="eventTitle">{{title}}</div>
<div class="eventDescription">
{{{description}}}
</div>
</script>
<!-- template for speaker details -->
<script id="speakerTemplate" type="text/template">
<img src="{{image}}">
<div class="speakerTitle"><strong>{{name}} {{lastname}}</strong><br><em>{{title}}</em></div>
<div class="speakerCurriculum">
<br>{{{curriculum}}}
</div>
</script>
<body>
<div class="app">
<div data-role="page" id="home">
<header data-role="header" id="header">
<h1 id="h1">Agenda</h1>
</header>
<div data-role="content">
<nav data-role="navbar">
<ul class="daysInAgenda">
<li class="emptyLi"></li> <!-- non eliminare altrimenti si ha un errore js (https://github.com/jquery/jquery-mobile/issues/5141) -->
</ul>
</nav>
<ul data-role="listview" class="itemsInAgenda ui-listview">
<li class="emptyLi"></li><!-- non eliminare altrimenti si ha un errore js (https://github.com/jquery/jquery-mobile/issues/5141) -->
</ul>
<div class="emptyDiv"> </div>
</div>
<footer data-role="footer" id="footer">
<h3 id="h3"></h3>
</footer>
</div>
<div data-role="page" id="selectedEventPage">
<header data-role="header" id="header">
<h1 id="h1">Agenda</h1>
</header>
<div data-role="content" class="eventPageContent">
<a href="#home" class="navicon left-icon" data-transition="none"><span class="hide">Back to home</span></a>
<div id="eventContent"></div>
<div class="emptyDiv"> </div>
</div>
<footer data-role="footer" id="footer">
<h3 id="h3"></h3>
</footer>
</div>
<div data-role="page" id="selectedSpeakerPage">
<header data-role="header" id="header">
<h1 id="h1">Agenda</h1>
</header>
<div data-role="content" class="speakerPageContent">
<a href="#home" class="navicon left-icon" data-transition="none"><span class="hide">Back to home</span></a>
<div id="speakerContent"></div>
<div class="emptyDiv"> </div>
</div>
<footer data-role="footer" id="footer">
<h3 id="h3"></h3>
</footer>
</div>
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.mobile.js"></script>
<script>
$.mobile.loading("show");
</script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="js/moment.min.js"></script>
</body>
</html>