-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
100 lines (99 loc) · 4.56 KB
/
404.html
File metadata and controls
100 lines (99 loc) · 4.56 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Edinburgh Neurotech</title>
<meta name="description" content="Scotland's first student-led neurotech group; a SIG of CompSoc (The University of Edinburgh)">
<link rel="icon" type="image/x-icon" href="images/icons/favicons/favicon_512.png">
<link rel="stylesheet/less" type="text/css" href="style/style.less">
<script
src="https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"
onerror="this.onerror = null; this.src = '/modules/jquery.min.js'">
</script>
<script
src="https://cdn.jsdelivr.net/npm/less@4.4.2/dist/less.min.js"
integrity="sha256-fsqeGDAYFiQfd3zPCwywp+xo+LSA6pvsiKxkRmVEZU4="
crossorigin="anonymous"
onerror="this.onerror = null; this.src = '/modules/less.min.js'">
</script>
<script type="module">
import { html, render } from 'https://cdn.jsdelivr.net/npm/lit-html@3/+esm';
window.litHtml = html;
window.litRender = render;
</script>
<script src="scripts/navigation.js"></script>
<script src="scripts/menu.js"></script>
<script src="scripts/sponsors.js"></script>
<script src="scripts/socials.js"></script>
<script src="scripts/construction.js"></script>
<script src="scripts/utils/format.js"></script>
<script src="scripts/router.js"></script>
</head>
<body>
<div id="app">
<div class="body-container">
<div class="heading-container body-item">
<h1 class="title heading-item">
Edinburgh<br>
Neurotech
</h1>
<div class="vertical-line heading-item"></div>
<div class="icon heading-item">
<a href="/">
<img src="images/icons/icon_compressed_1024.png">
</a>
</div>
</div>
<div class="menu-container body-item">
<div class="icon menu-item">
<p1 class="title">Scotland's first student-led neurotech group</p1>
<a href="/">
<img src="images/icons/icon_compressed_1024.png">
</a>
</div>
<div class="menu-options-container">
<div class="newsletter menu-options-item" id="news">
<a href="/news">Newsletter</a>
</div>
<div class="contact-us menu-options-item" id="contact">
<a href="/contact">Contact Us</a>
</div>
<div class="join-us menu-options-item" id="join">
<a href="/join">Join Us</a>
</div>
</div>
</div>
<div id="app-content"></div>
</div>
<div class="footer-container">
<div class="email-container footer-item">
<div class="email-item">
<p1 class="title">E-mail: </p1>
</div>
<div class="email-item">
<a href="mailto:contact@edneurotech.co.uk">contact@edneurotech.co.uk</a>
</div>
</div>
<div class="socials-container footer-item">
<div class="socials-item">
<p1 class="title">Socials:</p1>
</div>
<div class="social linktree socials-item"></div>
<div class="social linkedin socials-item"></div>
<div class="social instagram socials-item"></div>
<div class="social github socials-item"></div>
</div>
</div>
<div class="copyright-container">
<a href="https://github.com/edneurotech/edneurotech.github.io/blob/main/LICENSE" target="_blank" formatted>© {1}</a>
</div>
<div class="outside-container">
<script src="/scripts/outside.js"></script>
<canvas class="outside outside-item"></canvas>
</div>
</div>
</body>
</html>