-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (114 loc) · 4.85 KB
/
index.html
File metadata and controls
127 lines (114 loc) · 4.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="The OpenBazaar Developer Network is a collective network of resources aimed to nurture development of OpenBazaar.">
<meta name="keywords" content="openbazaar, developer, network, platform, decentralized">
<link rel="shortcut icon" href="assets/img/favicon.png">
<title>OpenBazaar Developer Network</title>
<link rel="stylesheet" href="assets/css/base.css">
<link rel="stylesheet" href="assets/css/hubinfo.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="assets/js/feed.js"></script>
<script src="assets/js/hubinfo.js"></script>
</head>
<body>
<div id="wrapper">
<div id="content">
<div id="hero">
<div class="header">
<div class="nav">
<img class="logo" src="assets/img/logo.png">
<ul>
<li><a href="https://github.com/OpenBazaar/OpenBazaar-Server/tree/master/api" target="_blank">API</a></li>
<li><a href="https://openbazaar-slackin-drwasho.herokuapp.com/" target="_blank">Developers</a></li>
<li><a href="http://blog.openbazaar.org" target="_blank">Blog</a></li>
<li><a href="https://github.com/OpenBazaar" target="_blank">View on Github</a> <i class="fa fa-github fa-lg" style="color: #fff;"></i>
</li>
</ul>
</div>
</div>
<span class="opening">Maintaining a collective network of resources<br /> aimed to nurture development of OpenBazaar</span>
<div class="docs">
<a class="btn" href="http://docs.openbazaar.org" target="_blank">Browse the docs</a>
</div>
</div>
<div id="extend">
<h2 style="font-weight: strong;">Developer Blog</h2><br />
<div class="blog"><div class="blog-excerpt" id="feedContent"></div></div>
</div>
<div id="extend2">
<a class="twitter-timeline" data-dnt="true" href="https://twitter.com/openbazaar" data-widget-id="531608374400385025">Tweets by @openbazaar</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
<br /><br />
<section id="github">
<div id="openbazaar-server"></div>
</section>
<section id="github">
<div id="openbazaar-client"></div>
</section>
<section id="github">
<div id="openbazaar-installer"></div>
</section>
<section id="github">
<div id="openbazaar-org"></div>
</section>
<section id="github">
<div id="openbazaar-docs"></div>
</section>
</div>
</div>
<div id="footer">
<br /> © Copyright <a href="http://openbazaar.org">OpenBazaar</a>. <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank">Some Rights Reserved</a>.
</div>
</div>
<script type="text/javascript">
$.blogFeed('https://blog.openbazaar.org/feed',
function(feeds){
if(!feeds){
alert('there was an error');
}
for(var i=0;i<feeds.entries.length;i++){
var entry = feeds.entries[i];
var title = entry.title;
var link = entry.link;
var description = entry.content;
var html = "<div class='entry'><h4 class='postTitle'><a class='fancy block' href='" + link + "' target='_blank'>" + title + "</a></h4>";
html += "<p class='description'>" + description + "</p></div>";
$("#feedContent").append($(html));
}
}, 5);
</script>
<script>
$("#openbazaar-server").hubInfo({
user: "OpenBazaar",
repo: "OpenBazaar-Server"
});
</script>
<script>
$("#openbazaar-client").hubInfo({
user: "OpenBazaar",
repo: "OpenBazaar-Client"
});
</script>
<script>
$("#openbazaar-installer").hubInfo({
user: "OpenBazaar",
repo: "OpenBazaar-Installer"
});
</script>
<script>
$("#openbazaar-org").hubInfo({
user: "OpenBazaar",
repo: "openbazaar.org"
});
</script>
<script>
$("#openbazaar-docs").hubInfo({
user: "bglassy",
repo: "OpenBazaar-Docs"
});
</script>
</body>
</html>