-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (64 loc) · 3.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Information and links on the OpenDream project">
<title>OpenDream Game Engine</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="hero">
<picture>
<source media="(min-width: 1080px)" srcset="/assets/logo-big.svg" width="580px">
<source media="(min-width: 400px)" srcset="/assets/logo-big.svg" width="54%">
<source media="(max-width: 400px)" srcset="/assets/logo-small.svg" height="100px">
<img src="/assets/logo-big.svg" id="logo" alt="OpenDream logo">
</picture>
<br>
<div id="hero-links">
<div>
<a href="https://github.com/OpenDreamProject/OpenDream/">
<picture>
<source media="(prefers-color-scheme: light)" srcset="/assets/GitHub_Invertocat_Dark.svg">
<source media="(prefers-color-scheme: dark)" srcset="/assets/GitHub_Invertocat_Light.svg">
<img alt="OpenDream GitHub">
</picture>
<p>GitHub</p>
</a>
</div>
<div>
<a href="https://discord.opendre.am">
<picture>
<source media="(prefers-color-scheme: light)" srcset="/assets/discord-mark-black.svg">
<source media="(prefers-color-scheme: dark)" srcset="/assets/discord-mark-white.svg">
<img alt="OpenDream Discord Server">
</picture>
<p>Discord</p>
</a>
</div>
<div>
<a href="https://ref.opendre.am/">
<img id="link-ODRef" src="/assets/odref.svg" alt="OpenDream DM Reference">
<p>DM Reference</p>
</a>
</div>
</div>
</div>
<div id="contents">
<h1>OpenDream Game Engine</h1>
<p>OpenDream is an open source recreation of the <a href="https://www.byond.com/">BYOND</a> game engine. Current major goals include running <a href="https://spacestation13.com/">Space Station 13</a> and improving the DM development experience.</p>
<div id="screenshots">
<img src="https://github.com/OpenDreamProject/OpenDream/raw/master/.github/assets/screenshot.png?raw=true" alt="OpenDream running tg station"/>
<p>OpenDream running <a href="https://github.com/tgstation/tgstation">/tg/station</a></p>
<img src="https://github.com/OpenDreamProject/OpenDream/raw/master/.github/assets/screenshot2.png?raw=true" alt="OpenDream running Paradise"/>
<p>OpenDream running <a href="https://github.com/ike709/Paradise/tree/rustg_64">Paradise</a></p>
<img src="https://github.com/OpenDreamProject/OpenDream/raw/master/.github/assets/screenshot3.png?raw=true" alt="OpenDream running Goonstation"/>
<p>OpenDream running <a href="https://github.com/goonstation/goonstation">Goonstation</a></p>
</div>
</div>
</body>
</html>