-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
41 lines (38 loc) · 2.56 KB
/
about.html
File metadata and controls
41 lines (38 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<title>little programs -- about</title>
<link href="https://fonts.googleapis.com/css?family=Roboto|Source+Code+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<script src="w3.js"></script>
</head>
<body>
<div role="main" class="container">
<div role="navigation" w3-include-html="partials/navbar.html" class="nav-wrapper"></div>
<div class="two-column-wrapper">
<div class="profile-img-wrapper">
<img src="images/profile-pic.jpg">
</div>
<div class="profile-content-wrapper">
<h1>Hi, thanks for visiting!</h1>
<p>My name is Dylan, and I built this website to document my work as a software developer. It has been a tremendous tool for increasing my learning, but my hope is that it will spark curiosity for you as well.</p>
<h2>Background</h2>
<p>I am a former therapist and educator who navigated to software development after a long and productive detour into the world of coffee. My years of effort building and nurturing systems of teamwork – first as a member of an interdisciplinary medical team and then as the designer and manager of a training program for a 40-person coffee company – concluded when I accepted that my work in the service industry was not paying the bills. So in early 2018 I began teaching myself software development. I have worked predominantly with JavaScript, Ruby, Rails, and the React and Vue frameworks. Both my Undergraduate and Masters theses were about the Ethics of Caring, and I believe care is the force that drives collaboration: we care about the quality of our work, we care about how our work affects others, and most importantly we take responsibility for the impact our work has on others.</p>
<h2>Ice Breaker</h2>
<p>I have maintained a persistent passion for hiking on Mt. Hood, gardening (currently growing beets, carrots, garlic, and leeks), and cooking. I just love to cook. If we ever meet and you aren’t sure what to say, bring up these topics and we will have a lot to talk about!</p>
</div>
</div>
<div w3-include-html="partials/footer.html" class="footer"></div>
</div>
<script>
w3.includeHTML(setActiveLink);
function setActiveLink() {
const elem = document.getElementById('about-link')
elem.classList.add('active-nav-link')
}
</script>
</body>
</html>