-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
95 lines (79 loc) · 3.16 KB
/
team.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
---
---
<!DOCTYPE html>
<html>
<head>
<title>SpaceCraft: A Real-Time, Collaborative REPL</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono|Roboto:300,400,900" rel="stylesheet" />
<link rel="shortcut icon" type="image/png" href="/favicon.png" />
<link rel="stylesheet" href="/css/reset.css" />
<link rel="stylesheet" href="/css/team.css" />
</head>
<body>
{% include menu.html %}
<header>
<nav>
<a href="/">
<img src="/images/logo.png" />
</a>
</nav>
<div class="page-title">
<h1>Meet the Team</h1>
<p>
Our team of three built SpaceCraft by working together remotely across the United States. We are looking for our next opportunities! Please get in touch if you think we'd be a good fit for your team.
</p>
</div>
<div class="flex-placeholder"></div>
</header>
<main>
<ul class="profiles">
<li>
{%
include profile.html
photo="images/gooi.jpg"
name="Ying Chyi Gooi"
city="Brooklyn, NY"
email="[email protected]"
website="https://gooi.tech"
linkedin="https://www.linkedin.com/in/ying-chyi-gooi-89ba5095/"
interest="Full-stack development, client-server state synchronization, container-based deployment and DevOps. I am also interested in decentralized and open blockchain systems."
funfact="I am able to <a href='https://www.youtube.com/watch?v=T-27imipklY&feature=youtu.be&t=84' target='_blank'>solve a Rubik's cube in 30 seconds</a> and I love to play board games."
%}
</li>
<li>
{%
include profile.html
photo="images/julius.jpg"
name="Julius Zerwick"
city="Brooklyn, NY"
email="[email protected]"
website="https://rouxcaesar.github.io/"
linkedin="https://www.linkedin.com/in/julius-zerwick-842000b2/"
interest="Full-stack development, DevOps, infrastructure, and decentralized systems."
funfact="In 2013, I cycled from Austin, TX to Anchorage AK to fundraise for cancer research as part of <a href='https://www.texas4000.org' target='_blank'
>Texas 4000</a>. I also love the outdoors, cooking and board games."
%}
</li>
<li>
{%
include profile.html
photo="images/nick.jpg"
name="Nick Johnson"
city="San Francisco, CA"
email="[email protected]"
website="https://njohnson7.github.io/"
linkedin="https://www.linkedin.com/in/njohnson07/"
interest="Back-end development, Linux, shell scripting, decentralized systems, containerization, security, DevOps, and algorithms."
funfact="I love solving code challenges and <a href='https://www.codewars.com/users/njohnson7' target='_blank'>I'm ranked among the top 100 users on Codewars</a>. I also enjoy traveling and have lived in Japan and Canada."
%}
</li>
</ul>
</main>
<footer>
{% include footer.html %}
</footer>
<script src="javascript/menu.js"></script>
</body>
</html>