-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (89 loc) · 3.78 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
97
98
99
100
101
102
103
104
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Hive Projects | RoccoDev</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
</head>
<body>
<div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom box-shadow">
<h5 class="my-0 mr-md-auto font-weight-normal">RoccoDev</h5>
<a class="btn btn-outline-success" href="http://rocco.dev">Back to Main Site</a>
</div>
<div class="pricing-header px-3 py-3 pt-md-5 pb-md-4 mx-auto text-center">
<h1 class="display-4">My Hive Projects</h1>
<p class="lead">Here you can find all the information about my current/planned projects for the HiveMC minigames
server.</p>
</div>
<div class="container">
<div class="card-deck mb-3 text-center">
<div class="card mb-4 box-shadow">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Monthly Leaderboards</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"><small class="text-muted">for</small> BedWars</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Resets every 1st of the month</li>
<li>Updates every 10 minutes</li>
<li>Includes players from the Top 500</li>
<li>Sortable table</li>
</ul>
<a href="bedwars/" class="btn btn-lg btn-block btn-outline-primary">Check it out</a>
</div>
</div>
<div class="card mb-4 box-shadow">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Beezig Plugin</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"><small class="text-muted">for</small> 5zig</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Adds Hive support</li>
<li>Majority of modes supported</li>
<li>Unique features</li>
<li>Discord integration</li>
</ul>
<a href="https://rocco.dev/beezig" class="btn btn-lg btn-block btn-outline-primary">Check it out</a>
</div>
</div>
<div class="card mb-4 box-shadow">
<div class="card-header">
<h4 class="my-0 font-weight-normal">AutoGG Mod</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"><small class="text-muted">for</small> Hive</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Automatically say 'gg' once the game ends</li>
<li>Toggleable triggers</li>
<li>Custom message support</li>
<li>Easy toggle</li>
</ul>
<a href="http://rocco.dev/mods/autogg" class="btn btn-lg btn-block btn-outline-primary">Check it out</a>
</div>
</div>
<div class="card mb-4 box-shadow">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Java/Kotlin Wrapper</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"><small class="text-muted">for the</small> API</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>90% Coverage</li>
<li>Easy to understand</li>
<li>Practical documentation</li>
<li>Plug-and-play dependency management</li>
</ul>
<a href="http://github.com/RoccoDev/HiveAPIKt" class="btn btn-lg btn-block btn-outline-primary">Check it
out</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>