-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
69 lines (64 loc) · 2.64 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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Webian - The web operating system</title>
<link rel="icon" href="images/icon.svg" />
<link rel="stylesheet" type="text/css" href="css/site.css?v=1" />
<link rel="stylesheet" type="text/css" href="css/home.css?v=1" />
<link rel="stylesheet" media="(max-width: 959px)" href="css/site-mobile.css?v=1" />
<link rel="stylesheet" media="(max-width: 959px)" href="css/home-mobile.css?v=1" />
<meta name="description" content="The web operating system." />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@webianproject" />
<meta property="og:title" content="Webian" />
<meta property="og:description" content="The web operating system." />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://webian.org" />
<meta property="og:image" content="http://webian.org/images/banner.png" />
<script src="/js/site.js"></script>
</head>
<body>
<header>
<button id="menu-button"></button>
<img id="logo" src="images/logo.svg" alt="Webian" />
</header>
<nav id="main-navigation">
<ul id="main-navigation-list">
<li><a class="selected" href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/community">Community</a></li>
<li><a href="/blog">Blog</a></li>
</ul>
</nav>
<main>
<h1>The web operating system</h1>
<h2>Pure web.</h2>
<img id="screenshot" src="images/shell_desktop_screenshot.png"
alt="Screenshot of a desktop user interface with a grid of icons, a
search bar, a taskbar and a power button." />
<a id="get-involved-button" href="/community" class="button">Get Involved</a>
</main>
<footer>
<nav id="social">
<a id="facebook-icon" href="https://www.facebook.com/webianproject/">
<img src="/images/facebook_icon.svg" />
</a>
<a id="github-icon" href="https://github.com/webianproject/">
<img src="/images/github_icon.svg" />
</a>
<a id="twitter-icon" href="https://twitter.com/webianproject">
<img src="/images/twitter_icon.svg" />
</a>
</nav>
<p id="copyright">
© <a href="http://tola.me.uk">Ben Francis</a> 2022
</p>
<p id="smallprint">
Sponsored by <a href="https://krellian.com">Krellian</a>.<br />
Webian is not affiliated with Debian, Debian is a registered trademark owned by SPI.
</p>
</footer>
</body>
</html>