-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
96 lines (94 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>octocard</title>
<meta name="viewport" content="initial-scale=1,user-scalable=no,maximum-scale=1,width=device-width">
<link rel="icon" type="image/x-icon" href="images/favicon.ico" />
</head>
<body>
<style>
body {
text-align:center;
}
#octocard h1 {
color: red;
}
#octocard,
#octocard2,
#octocard3 {
float: left;
}
#octocard {
width: 180px;
}
#octocard2 {
width: 240px;
}
#octocard3 {
width: 480px;
}
[id^=octocard] {
margin-right: 1em !important;
margin-bottom: 1em !important;
float: left;
width: 240px;
}
</style>
<!--
<div id="octocard"></div>
<div id="octocard2"></div>
<div id="octocard3"></div>
<script>
OCTOCARD = {
name: 'zmmbreeze',
reposNum: 3,
noIsolated: true
};
</script>
<script
data-name="zmmbreeze"
data-theme="azzura"
data-reposNum="5"
data-reposIgnored="slider.css"
data-orgsNum="-1"
data-noFooter="false"
data-api="http://localhost:8080/api"
src="bin/octocard.js"></script>
-->
<script data-name="zmmbreeze" src="bin/octocard.js"></script>
<script>
OCTOCARD = {
name: 'zmmbreeze',
reposNum: 3,
noIsolated: true,
theme: 'night'
};
</script>
<script data-name="zmmbreeze" data-theme="azzura" src="bin/octocard.js"></script>
<script src="bin/octocard.js"></script>
<!--
<script>
octocard({
name: 'zmmbreeze',
reposNum: 10,
noIsolated: true,
theme: 'azzura-black'
// api: 'http://localhost:8080/api'
});
octocard({
element: 'octocard2',
name: 'zmmbreeze',
theme: 'night'
// api: 'http://localhost:8080/api'
});
octocard({
element: 'octocard3',
name: 'zmmbreeze',
theme: 'base'
// api: 'http://localhost:8080/api'
});
</script>
-->
</body>
</html>