-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
81 lines (81 loc) · 2.48 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
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="TJHSST's premier web development club." />
<title>TJHSST Web Development Club</title>
<link rel="stylesheet" href="css/main.css" />
<script
src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js"
defer
></script>
</head>
<body>
<section class="light" id="intro">
<div>
<p>TJHSST</p>
<h1>Web<br />Development<br />Club</h1>
<p>Wednesday, 8B, Room 16 (Billington)</p>
</div>
</section>
<section class="dark" id="officers">
<div>
<h2>Officers</h2>
<div x-data="officers" id="officers-grid">
<template x-for="officer in officers" :key="officer.name">
<div class="officer">
<img x-bind:src="'images/officers/' + officer.image" />
<h3 x-text="officer.name" class="name"></h3>
<p>
<span x-text="officer.role" class="role"></span>,
<span x-text="officer.year" class="year"></span>
</p>
</div>
</template>
</div>
</div>
</section>
<section class="light" id="resources">
<div>
<h2>Resources</h2>
<div x-data="resources">
<template x-for="resource in resources" :key="resource.name">
<a
class="resource"
x-bind:href="resource.link"
x-text="resource.name"
>
</a>
</template>
</div>
</div>
</section>
<section class="dark" id="other">
<div>
<div id="lectures">
<img src="images/icons/lecture.svg" />
<p>Lectures</p>
<a href="#">Coming Soon</a>
</div>
<div id="contact">
<img src="images/icons/mail.svg" />
<p>Contact</p>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div id="github">
<img src="images/icons/github.svg" />
<p>GitHub</p>
<a href="https://www.github.com/tjdevclub">github.com/tjdevclub</a>
</div>
</div>
</section>
<section class="light" id="credits">
<p>Copyright © 2020</p>
<p>
Design by Akash Bhave (<span style="font-style: italic">2021</span>)
</p>
</section>
</body>
<script src="script.js"></script>
</html>