-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
178 lines (142 loc) · 5.3 KB
/
support.html
File metadata and controls
178 lines (142 loc) · 5.3 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
<!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">
<h2>Support</h2>
<p>Please contact us directly on contact@@vehicle-history.io and we'll respond as soon as possible.</p>
<div class="row">
<div class="span6">
<script id="directSupportListingTemplate" type="text/template">
<li><a href="{{URL}}"><strong>{{Name}}</strong></a> - {{Description}}</li>
</script>
<script type="text/javascript">
function listAPIs()
{
$.getJSON('json/support.json', function(data) {
toggle = 0;
$.each(data['Direct Support'], function(key, val) {
var template = $('#directSupportListingTemplate').html();
var html = Mustache.to_html(template, val);
$('#directSupportListing').append(html);
});
});
}
listAPIs();
</script>
<h3>Direct Support</h3>
<div style="height: 300px; overflow: auto;">
<ul id="directSupportListing"></ul>
</div>
</div>
</div>
<br />
<p align="center">Support is critical to the success of this developers portal. Please provide feedback and help us make sure this program is successful.</p>
</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>