-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathindex.html
59 lines (52 loc) · 1.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
<html>
<head>
<title>Demo Social Service</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link id="siteicon" rel="icon" href="./firefox.png"/>
<style>
body {
padding-top: 50px;
}
.starter-template {
padding: 40px 15px;
text-align: center;
}
</style>
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="./directory.js" type="text/javascript"></script>
</head>
<body onload="generate(document.getElementById('provider-list'));">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">SocialAPI</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="https://github.com/mixedpuppy/socialapi-demo">Github</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Social_API">Documentation</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
<div class="starter-template">
<h1>Demo Social Provider</h1>
<p class="lead">This website drives a demo social provider used to
illustrate API usage and for manual testing. Use of this demo provider
may interfere with the testing of the demo directory service since they
both run from the same domain. Be sure to remove this demo provider
before using the <a href="https://mixedpuppy.github.io/socialapi-directory/en-US/">directory service</a>.</p>
<div id="provider-list"/>
</div>
</div><!-- /.container -->
</body>
</html>