-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (91 loc) · 4.45 KB
/
index.html
File metadata and controls
92 lines (91 loc) · 4.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>DragDev Studios</title>
<link rel="stylesheet" href="/css/main.css"/>
<meta property="og:title" content="DragDev Studios - Home"/>
<meta property="og:description" content="DragDev Studios is a small discord group creating high-quality, powerful discord bots."/>
<meta name="theme-color" content="#3498db"/>
<meta name="description" content="DragDev Studios is a small discord group creating high-quality, powerful discord bots."/>
<meta name="color-scheme" content="dark"/>
</head>
<body>
<h1 style="text-align: center;font-size:6rem" class="boxshadow">DragDev Studios</h1>
<div class="cen">
<h2>Select an organization</h2>
<a href="https://clicksminuteper.net/">
<img src="/assets/cmp.jpg" alt="clicksminuteper" title="Clicks Minute Per" class="avatar boxshadow"/>
</a>
<a href="/about/dragdev.html">
<img src="/assets/dds.png" alt="dragdev studios" title="DragDev Studios" class="avatar boxshadow"/>
</a>
</div>
<div class="cen">
<h2>Select a (DragDev Studios) branch</h2>
<a href="https://yourapps.cyou">
<img src alt="yourapps" title="YourApps - An Application Bot" id="yourapps-1" class="avatar-small boxshadow"/>
</a>
<a href="https://hammr.clicksminuteper.net">
<img src="/assets/hammr.png" alt="hammr" title="Security" class="avatar-small boxshadow"/>
</a>
</div>
<div class="cen">
<h2>Select a Bot</h2>
<h3>DragDev Studios:</h3>
<a href="https://yourapps.cyou/">
<img src alt="yourapps" title="YourApps" id="yourapps" class="avatar-smaller boxshadow"/>
</a>
<a href="https://hammr.clicksminuteper.net/">
<img src="/assets/hammr.png" alt="hammr" title="HammR" class="avatar-smaller boxshadow"/>
</a>
<a href="https://top.gg/bot/740015266079178843">
<img src="/assets/megaphone.png" alt="megaphone" title="MegaPhone" class="avatar-smaller boxshadow"/>
</a>
<h3>ClicksMinutePer:</h3>
<a href="https://top.gg/bot/679361555732627476">
<img src="/assets/GPS.png" alt="gonepearshaped" title="Gone Pear Shaped (Cards Against Humanity)" class="avatar-smaller boxshadow"/>
</a>
<a href="https://top.gg/bot/715989276382462053">
<img src="/assets/RSM.png" alt="RSM" title="RSM" class="avatar-smaller boxshadow"/>
</a>
</div>
<hr style="max-width: 75%;height:10px;border-radius: 4px;background-color:white"/>
<div class="cen">
<h2>External Websites</h2>
<a href="https://github.com/dragdev-studios">
<img src="/assets/github.png" alt="github" class="avatar-smaller boxshadow">
</a>
<a href="https://yourapps.cyou/support">
<img src="/assets/discord.svg" class="avatar-small boxshadow" alt="discord" style="border-radius:0;filter:invert(1)"/>
</a>
</div>
<script defer>
// Fetch all icons supplied by external services.
async function get(url, elemid, backup) {
async function resolve() {
try {
const result = await fetch(url);
const json = await result.json();
const result_url = json.url;
return result_url;
}
catch {
return backup || "https://cdn.discordapp.com/embed/avatars/4.png";
};
};
const res = await resolve();
let elem = document.getElementById(elemid);
if (elem) {elem.src = res;}
else {console.warn("No element with the ID " + elemid)};
return;
};
const places = [
["https://ya.clicksminuteper.net/api/bot/icon", "yourapps", "/assets/yourapps.png"],
["https://ya.clicksminuteper.net/api/bot/icon", "yourapps-1", "/assets/yourapps.png"]
];
for (const [u,i,b] of places) {
get(u,i,b);
}
</script>
</body>
</html>