forked from sethcottle/littlelink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (44 loc) · 2.05 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
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ site.title }}</title>
<meta name="description" content="{{ site.description }}">
<meta name="author" content="Stellar Vector">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/normalize.css">
<link rel="stylesheet" href="/css/skeleton-auto.css">
<link rel="stylesheet" href="/css/brands.css">
<link rel="icon" type="image/png" href="https://www.stellarvector.be/assets/branding/logo/icon-star.ico">
<style>
.button.button-sv{color: #ffffff;background-color: {{ site.primary_color }}49;}
.button.button-sv:hover,.button.button-sv:focus{filter: brightness(90%);}
.button.button-google-groups{color: #ffffff;background-color: #4285f429;}
.button.button-google-groups:hover,.button.button-google-groups:focus{filter: brightness(90%);}
.button.button-htb{color: #ffffff;background-color: #9fef0029;}
.button.button-htb:hover,.button.button-htb:focus{filter: brightness(90%);}
.button.button-dockerhub{color: #ffffff;background-color: #25435649;}
.button.button-dockerhub:hover,.button.button-dockerhub:focus{filter: brightness(90%);}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="column" style="margin-top: 10%">
<img src="https://www.stellarvector.be/assets/branding/logo/circle-dark.svg" class="avatar" alt="Stellar Vector Logo">
<h1 role="heading">{{ site.title }}</h1>
{% include links.html links=site.data.links.general %}
<h2>Hacking</h2>
{% include links.html links=site.data.links.hacking %}
<h2>Social media</h2>
{% include links.html links=site.data.links.social %}
<h2>Other places to find us</h2>
{% include links.html links=site.data.links.other %}
<p><small style="color: #555">Adapted from <a href="https://littlelink.io" target="_blank" rel="noopener" role="button" style="color: #555">LittleLink</a>.</small></p>
</div>
</div>
</div>
</body>
</html>