blob: b8ea55bb67615f5ad950bab044432971eeda3777 (
plain) (
blame)
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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="./assets/css/index.css">
<link rel="shortcut icon" type="image/x-icon" href="./assets/images/favicon.ico">
<title>Silicon Linux</title>
</head>
<body class="bg-dark text-white">
<div class="wrapper">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand d-flex align-items-center" href="index.html"><img src="assets/images/silicon-linux-translogo.png" width="32px;" height="32px;" class="mr-2">Silicon Linux</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link" href="./index.html">Home</a>
<a class="nav-item nav-link" href="./faq.html">FAQ</a>
<a class="nav-item nav-link active" href="./about.html">About</a>
</div>
</div>
</nav>
<div class="container">
<div class="mb-5">
<h1 class="text-center">About Us</h1>
<p class="font-weight-bold">Twitter: <a href="https://twitter.com/silicon_linux" class="text-white">silicon_linux</a></p>
<p class="font-weight-bold">GitHub: <a href="https://github.com/silicon-linux" class="text-white">Silicon Linux</a></p>
<p class="font-weight-bold">Discord: <a href="https://discord.gg/QbuuAF5" class="text-white"><img src="https://img.shields.io/discord/502598767510290432.svg?colorB=7289DA&label=discord" alt="Discord Badge"></a></p>
</div>
<div class="mb-5">
<h1 class="text-center">Contact Us</h1>
<p>If you have any problems, don't hesitate to email us at: <a href="mailto:support@silicon-linux.net" class="text-white font-weight-bold">support@silicon-linux.net</a></p>
</div>
<div>
<h1 class="text-center">About The Team</h1>
<p>We currently have 9 people on our team.</p>
<p>The Silicon Linux project started on October 18th, 2018.</p>
</div>
</div>
</div>
<div class="footer w-100 d-flex flex-column justify-content-center">
<p class="text-center">© Copyright 2019, Silicon Linux Development Group. <a href="https://github.com/silicon-linux/silicon-linux.github.io/issues" class="text-white">Report a bug.</a></p>
</div>
<!-- Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>
|