-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathindex.html
57 lines (56 loc) · 2.8 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="utf-8">
<meta name="author" content="Simran Thind and Janakitti Ratana-Rueangsri">
<meta name="description" content="A webring for Software Engineering students at the University of Waterloo.">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta property='og:title' content='SE Webring'>
<meta name="image" property='og:image' content='http://se-webring.xyz/assets/logo/se-webring-pattern.png'>
<meta name="image" property='og:image:secure_url' content='https://se-webring.xyz/assets/logo/se-webring-pattern.png'>
<meta property='og:description' content='A webring for Software Engineering students at the University of Waterloo.'>
<meta property='og:url' content='//se-webring.xyz/'>
<title>SE Webring</title>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/[email protected]/build/three.module.js",
"three/addons/": "https://unpkg.com/[email protected]/examples/jsm/"
}
}
</script>
<link rel="icon" href="./assets/logo/logo_bg_b.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap">
<link rel="stylesheet" href="./se-webring.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script type="module" src="./js/se-webring.js"></script>
</head>
<body onload="fillSiteTable(`fromLoading`)">
<div id="webringTorus"></div>
<div class="sticky" id="seWebringLogo">
<a href="https://github.com/simcard0000/se-webring" target="_blank">
<img src="./assets/logo/logo_bg_b.png" alt="SE Webring repository link" width="50" height="50">
</a>
</div>
<div id="centeredContent">
<div class="sticky" id="searchbarSection">
<img id="searchbarIcon" src="./assets/search.svg" alt="Search site icon" width="15" height="15">
<input id="searchbarInput" type="search" maxlength="100" minlength="0" spellcheck="false"
aria-label="Search the list of websites by site name, person name, and cohort year."
placeholder="search by site/year" name="searchbarInput" oninput="fillSiteTable(`fromSearch`)">
</div>
<noscript>
<p>Sorry, this website needs JavaScript to run. Please enable running scripts for this website in your browser.</p>
</noscript>
<!-- the site list will be dynamically added to the html here -->
</div>
<div id="footer-container">
<p id="footer-link">
<a href="https://github.com/simcard0000/se-webring/pulls">add your site here ❯</a>
</p>
</div>
<script type="module" src="./js/torus.js"></script>
</body>
</html>