-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
195 lines (160 loc) · 5.73 KB
/
gallery.html
File metadata and controls
195 lines (160 loc) · 5.73 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Festivals API documentation</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Developers portal for festivals">
<meta name="author" content="Zenedith<zenedith@wp.pl>">
<link rel="icon" type="image/png" href="/vendor/img/favicon-32x32.png" sizes="32x32"/>
<link rel="icon" type="image/png" href="/vendor/img/favicon-16x16.png" sizes="16x16"/>
<link href='/vendor/css/typography.css' media='screen' rel='stylesheet' type='text/css'/>
<link href='/vendor/css/reset.css' media='screen' rel='stylesheet' type='text/css'/>
<link href='/vendor/css/reset.css' media='print' rel='stylesheet' type='text/css'/>
<link href='/vendor/css/print.css' media='print' rel='stylesheet' type='text/css'/>
<link href="/vendor/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
.legal {
list-style: none;
text-align: center;
list-style-type: none;
}
.legal li {
display: inline;
padding: 5px;
}
.hero-unit {
padding: 30px;
margin-bottom: 15px;
font-size: 18px;
font-weight: 100;
line-height: 30px;
color: inherit;
background-color: #eeeeee;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.toolbar {
float: right;
padding-top: 10px;
}
.toolbar li {
display: inline;
list-style: none;
padding-left: 2px;
padding-right: 2px;
font-size: 14px;
font-weight: bold;
}
.toolbar li a {
color: #000;
font-size: 14px;
}
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
@media (max-width: 980px) {
/* Enable use of floated navbar text */
.navbar-text.pull-right {
float: none;
padding-left: 5px;
padding-right: 5px;
}
}
</style>
<link href="/vendor/css/bootstrap-responsive.css" rel="stylesheet">
<script src="/vendor/js/main.min.js"></script>
<!--[if IE]>
<link rel="stylesheet" href="/vendor/css/for-ie-only.css">
<![endif]-->
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body class="wrap">
<header>
<a href="https://github.com/festivals-platform/dev-hub"><img style="position: absolute; top: 0; right: 0; border: 0; z-index: 1050;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="index.html">Dev Hub</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="active"><a href="getting-started.html">Getting started</a></li>
<li><a href="/api.html">APIs</a></li>
<li><a href="/code.html">Code</a></li>
<li><a href="/support.html">Support</a></li>
<li><a href="/blog.html">Blog</a></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<section>
<div class="container">
<ul class="toolbar">
<li>{"<a href="json/gallery.json" title="JSON" target="_blank">JSON</a>"}</li>
</ul>
<h2>Gallery</h2>
<p>Here are some examples of what is possible with developer around APIs and data. This gallery is not limited to web and mobile applications, but also contain visualizations, spreadsheet integrations and much more.</p>
<!-- Begin List Code Samples--->
<script id="galleryListingTemplate" type="text/template">
<tr>
<td width="25%" align="center">
<img src="{{Screenshot}}" width="150" align="center" style="padding: 15px;" />
</td>
<td width="75%">
<table cellpadding="3" width="100%">
<tr>
<td><strong>{{Name}}</strong></td>
</tr>
<tr>
<td>({{Language}})</td>
</tr>
<tr>
<td><a href="{{URL}}" target="_blank">{{URL}}</a></td>
</tr>
<tr>
<td>{{Description}}</td>
</tr>
</table>
</td>
</tr>
</script>
<div style="">
<table id="galleryListing" border="0" width="90%" align="left" cellpadding="5" cellspacing="5"></table>
</div>
<script type="text/javascript">
function listGallery()
{
$.getJSON('json/gallery.json', function(data) {
toggle = 0;
$.each(data['Gallery'], function(key, val) {
var template = $('#galleryListingTemplate').html();
var html = Mustache.to_html(template, val);
$('#galleryListing').append(html);
});
});
}
listGallery();
</script>
<!-- End List Code Simples--->
</div>
</section>
<footer>
<hr/>
<ul class="legal">
<li><a href="/legal/terms-of-use.html">Terms of Use</a></li>
<li><a href="/legal/privacy-policy.html">Privacy Policy</a></li>
<li><a href="/sitemap.html">Sitemap</a></li>
</ul>
</footer>
</body>
</html>