forked from iveytechclub/iveytechclub.ca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alumni.html
74 lines (74 loc) · 2.46 KB
/
alumni.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap"
rel="stylesheet"
/>
<!-- Stylesheets -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" href="./global.css" />
<link rel="stylesheet" type="text/css" href="pages/AlumniPage/alumni.css" />
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/a1f2f06675.js"
crossorigin="anonymous"
></script>
<link rel="icon" type="image/png" href="./assets/favicon.png" />
<title>ITC Alumni</title>
</head>
<body>
<div class="container">
<div id="react-navbar"></div>
<div class="alumni-page">
<h1>Alumni</h1>
<p class="text-center alumni-message">
Don't hesitate to reach out, we are always happy to chat! <br />
Click or tap each photo to view the corresponding LinkedIn profile.
</p>
<div id="alumni-collection"></div>
</div>
<section id="footer-target"></section>
</div>
<!-- Bootstrap JS -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"
></script>
<!-- Load React. -->
<script
crossorigin
src="https://unpkg.com/react@17/umd/react.production.min.js"
></script>
<script
crossorigin
src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"
></script>
<!-- Define nav location for navbar -->
<script>
const PAGE = "people";
</script>
<!-- Load compiled React components and their styles. -->
<script src="build/NavBar/navbar.js"></script>
<!-- <script src="build/Footer/footer.js"></script> -->
<script
src="build/AlumniCollection/alumnicollection.js"
type="module"
></script>
<link
rel="stylesheet"
type="text/css"
href="components/NavBar/navbar.css"
/>
</body>
</html>