-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
121 lines (107 loc) · 5.07 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
---
title: Home
layout: default
---
<div class="container-fluid m-0" style="background: fixed center; background-image: url(/assets/img/space-bg.jpg); background-size: cover; background-position: center;">
<div class="container text-center" style="width: 45%;">
<img src="/assets/img/banner.png" alt="simplestation banner" class="img-fluid">
</div>
</div>
<hr class="m-0 mb-2" style="border: 0px; border-top: 4px; border-style: dashed;">
<!-- Header -->
<div class="container-md text-center pt-3">
<p style="font-size: large;">
SimpleStation is a <a class="link-info link-underline-opacity-0" href="https://store.steampowered.com/app/1255460/Space_Station_14/">Space Station 14</a>
community intended to bring people together and to make the game a little more enjoyable.
<br>
We offer server hosting, develop useful tools, and maintain an active community more than happy to help.
<br><br>
Below you'll find SimpleStation's collection of 'in-house' servers, each offering something different. For a larger collection,
you can find our 'community servers' on the Community Servers page. If you're interested in getting hosted and becoming a Community Server yourself
or would simply like to learn more about development and contributing, feel free to message @<span style="color: rgb(236, 78, 236);">pspritechologist</span> on the SimpleStation Discord server!
</p>
</div>
<!-- Main site locations -->
<h3 class="text-center mt-3">Important Locations</h3>
<div class="container-md text-center">
<div class="row row-cols-1 row-cols-lg-3">
<div class="col">
{% comment %} <a href="/" class="btn w-100 h-100 mb-2">
<div class="col">
<img class="img-fluid" src="/assets/img/space-bg.jpg"/>
<div>
<span class="display-6">Servers</span>
</div>
</div>
</a> {% endcomment %}
</div>
<div class="col">
<a href="/pages/community_servers.html" class="btn w-100 h-100 mb-2">
<div class="col">
<img class="img-fluid" src="/assets/img/space-bg.jpg"/>
<div>
<span class="display-6">Community Servers</span>
</div>
</div>
</a>
</div>
</div>
<div class="col">
{% comment %} <a href="/" class="btn w-100 h-100 mb-2">
<div class="col">
<img class="img-fluid" src="/assets/img/space-bg.jpg"/>
<div>
<span class="display-6">Servers</span>
</div>
</div>
</a> {% endcomment %}
</div>
</div>
{% comment %} <img class="img-fluid" src="/assets/img/icon.png"> {% endcomment %}
<!-- Under construction :P -->
{% include construction.html %}
{% comment -%}
<!-- SimpleStation Servers -->
<div class="container-fluid mb-5">
<div class="container-fluid px-5 text-center">
<div class="container-fluid px-5">
<hr class="border-3">
<div class="row">
<div class="col">
<hr class="d-lg-block d-none border-3">
</div>
<h1 class="text-center display-3 col-auto d-lg-block d-none">
SimpleStation Servers
</h1>
<h1 class="text-center col-auto d-lg-none b-block">
SimpleStation Servers
</h1>
<div class="col">
<hr class="d-lg-block d-none border-3">
</div>
</div>
</div>
<div class="row row-cols-xxl-4 row-cols-xl-3 row-cols-lg-2 row-cols-1">
{%- assign servers = site.servers | sort: 'sort_priority', 'last' -%}
{%- for server in servers -%}
{% assign server_name = server.id | split: "/" | last %}
<div class="col server-column">
<a href=" {{- server.url -}} ">
<div class="img-fluid server-banner" style="background-image: url(/assets/img/servers/ {{- server_name -}} /banner.png);"></div>
</a>
<button class="btn btn-secondary d-lg-none mb-3 btn-lg w-75 shadow"
type="button"
data-bs-toggle="collapse"
data-bs-target="#server-list- {{- server_name -}} -desc"
aria-expanded="false"
aria-controls="server-list- {{- server_name -}} -desc">
</button>
<div id="server-list- {{- server_name -}} -desc" class="collapse d-lg-block">
<div class="p-3 border-bottom border-end rounded rounded-5 server-description ss-bg-bg-alt shadow"> {{- server.server_description | markdownify -}} </div>
</div>
</div>
{%- endfor -%}
</div>
</div>
</div>
{%- endcomment %}