-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
82 lines (72 loc) · 1.92 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
<!-- landing page for until there is a front end-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Razdor</title>
<meta name="description" content="An in-progress discord alternative.">
<!-- <link rel="icon" href="<%= config.site.icon %>" type="image/x-icon">
<meta name="keywords" content="<%= config.site.keywords %>"> -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<div class="content">
<!-- <img src="<%= config.site.icon %>" class="avi"/><br /> -->
<h1>Razdor</h1>
<p style="margin-top:-13px;">An in-progress discord alternative.</p>
<br />
<a class="btn" href="https://discord.gg/MSrX5E8Fsp" target="_blank"><i class="fab fa-discord"></i> Discord link</a>
<a class="btn" href="https://github.com/RazdorChat" target="_blank"><i class="fab fa-github"></i> Github link</a>
<a class="btn" href="/docs/swagger" target="_blank"><i class="fas fa-book"></i> Documentation</a>
<br /><br /><br /><br />
</div>
<!-- Style -->
<style>
body {
background:#2C2F33;
margin:0;
color:#8C8C8C;
font-family: 'Roboto', sans-serif;
}
span {
background:#23272A;
padding:4px;
}
.content {
margin-left:auto;
text-align:center;
margin-right:auto;
margin-top:150px;
}
.avi {
border-radius:50%;
width:130px;
border: 3px solid #fff;
}
h1 {
color:#D98F8F;
}
.icon {
color:#B05D5D;
}
.btn {
background:#23272A;
padding:10px;
color:#8C8C8C;
border-radius:3px;
transition:.4s;
}
.btn:hover {
background:#D98F8F;
color:#fff;
transition:.4s;
}
a {
text-decoration:none;
color:#8C8C8C;
}
</style>
</body>
</html>