-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.shtml
125 lines (116 loc) · 4.53 KB
/
index.shtml
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<!--#include virtual="/inc/header.html" -->
<title>JJ Gray</title>
</head>
<body class="d-flex flex-column h-100">
<!--#include virtual="/inc/navbar.html" -->
<main>
<section class="bg-dark py-3 text-light">
<div class="container">
<div class="row justify-content-center align-items-center">
<div class="col-md-auto d-none d-sm-block">
<img src="images/pixel.png" style="max-height: 100%" />
</div>
<div class="col-sm-auto py-5">
<h1>Welcome to <code>jjgry.com</code>!</h1>
<p>This is a place for me to experiment and learn new things.</p>
</div>
</div>
</div>
</section>
<div class="alert alert-warning" role="alert">
<div class="container">
<i class="mr-1 fa fa-fw fa-exclamation-circle" aria-hidden="true"></i>
Construction work in progress! Expect things to be broken.
</div>
</div>
<section>
<div class="container">
<div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">About</h5>
<p class="card-text">
I'm a final year computer science student at the University
of Cambridge.
</p>
<p class="card-text">
This site exists because I keep telling myself I should make
one. Maybe I'll put something interesting here one day?
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">Contact</h5>
<p class="card-text">
If you've managed to find this page and don't already know
me, I have a page full of ways to contact me
</p>
<a href="/contact" class="btn btn-outline-primary"
>Stalk me</a
>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">Projects</h5>
<p class="card-text">
Sometimes I code things. Not everything is well documented,
but I'm working on adding it all to this site.
</p>
<a href="/projects" class="btn btn-outline-primary">
Projects page
</a>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">Student positions</h5>
<p class="card-text">
I'm currently the chair of the
<a href="https://www.srcf.net/">
Student-Run Computing Facility</a
>, a society that provides free computing facilities to
members of the university.
</p>
<p class="card-text">
I'm also the junior treasurer of the
<a href="http://wilkes.soc.srcf.net/">Wilkes Society</a>, a
collegiate society that hosts social events for computer
science students.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">Photography</h5>
<p class="card-text">
I own a couple old 35mm film cameras that I use on-and-off
to take photos
</p>
<a href="/gallery" class="btn btn-outline-primary">
View the gallery
</a>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!--#include virtual="/inc/footer.html" -->
<!--#include virtual="/inc/end-scripts.html" -->
</body>
</html>