-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
91 lines (89 loc) · 3.23 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
---
layout: default
---
<div id="intro">
<input id="show-desktop-downloads" type="checkbox"/>
<div id="intro-body">
<div id="inner-wide">
<h1>A lightweight, fast and extensible game server for Minecraft</h1>
<h2>Download for Minecraft Java Edition 1.8 - 1.12.2</h2>
<div id="downloads">
<!-- Note: don't forget to update the CSS max-height of .downloadmenu when adding new items. -->
<div id="desktop-downloads">
<label class="downloadbutton" tabindex="0">
<svg aria-hidden="true" height="1.688em" viewBox="0 0 24 24" width="1.688em">
<path d="{% include _svg/linux %}" />
</svg>
Linux
<input type="checkbox"/>
<span class="downloadmenu">
<a href="https://download.cuberite.org/linux-i386/Cuberite.tar.gz">x86 32-bit</a>
<a href="https://download.cuberite.org/linux-x86_64/Cuberite.tar.gz">x86 64-bit</a>
<a href="https://download.cuberite.org/linux-armhf-raspbian/Cuberite.tar.gz">Raspberry Pi</a>
<a href="https://download.cuberite.org/linux-aarch64/Cuberite.tar.gz">ARM 64-bit</a>
</span>
</label>
<label class="downloadbutton" tabindex="0">
<svg aria-hidden="true" height="1.688em" viewBox="0 0 24 24" width="1.688em">
<path d="{% include _svg/windows %}" />
</svg>
Windows
<input type="checkbox"/>
<span class="downloadmenu">
<a href="https://download.cuberite.org/windows-i386/Cuberite.zip">x86 32-bit</a>
<a href="https://download.cuberite.org/windows-x86_64/Cuberite.zip">x86 64-bit</a>
</span>
</label>
<a href="https://download.cuberite.org/darwin-x86_64/Cuberite.tar.gz" class="downloadbutton">
<svg aria-hidden="true" height="1.688em" viewBox="0 0 24 24" width="1.688em">
<path d="{% include _svg/macos %}" />
</svg>
macOS
</a>
</div>
<div id="mobile-downloads">
<a href="https://download.cuberite.org/android" class="downloadbutton">
<svg aria-hidden="true" height="1.688em" viewBox="0 0 24 24" width="1.688em">
<path d="{% include _svg/android %}" />
</svg>
Android™
</a>
</div>
<div id="download-footer">
<a href="/demoservers/">Demo Servers</a>
<span>•</span>
<a href="/get-started/">Get Started</a>
<span>•</span>
<a href="/download-links/">Download Links</a>
<span>•</span>
<a href="https://github.com/cuberite/cuberite">Source Code</a>
</div>
</div>
<label id="show-desktop-downloads-button" for="show-desktop-downloads">
<span id="more">
<span>More</span>
<svg aria-hidden="true" height="1.313em" viewBox="0 0 24 24" width="1.313em">
<path d="{% include _svg/arrow-more %}" />
</svg>
</span>
<span id="hide">
<span>Hide</span>
<svg aria-hidden="true" height="1.313em" viewBox="0 0 24 24" width="1.313em">
<path d="{% include _svg/arrow-less %}" />
</svg>
</span>
</label>
</div>
</div>
</div>
{% capture notice %}
{% include notice.md %}
{% endcapture %}
{% assign size = notice | strip_newlines | size %}
{% if size > 1 %}
<div id="banner">
<div id="banner-body">
{{ notice | markdownify | remove: '<pre>' | remove: '<code>' | remove: '</pre>' | remove: '</code>' }}
</div>
</div>
{% endif %}