-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (71 loc) · 4.35 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Leah Einhorn</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/gif" href="images/favicon.gif">
<!-- Global site tag (gtag.js) - Google Analytics
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7Y2P95FV1G"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7Y2P95FV1G');
</script>
<script>
/** Set dark or light mode to the document body */
function darkOrLight() {
var body = document.body
body.style.backgroundColor ?
body.setAttribute('style', 'background-color: none; color: none;') :
body.setAttribute('style', 'background-color: #181818; color: white;')
var buttonDarkMode = document.getElementsByClassName('button-dark-mode')[0]
buttonDarkMode.innerText == "DARK MODE" ?
buttonDarkMode.innerText = "LIGHT MODE" :
buttonDarkMode.innerText = "DARK MODE"
}
</script>
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="row u-pull-right">
<div class="column" style="margin-top: 15%">
<button class="button-dark-mode" onclick="darkOrLight()">
Dark Mode
</button>
</div>
</div>
<div class="row">
<div class="column" style="margin-top: 20%">
<h5>Hey there 👋, I'm Leah Einhorn.</h5>
<p>I'm a lead software engineer, currently working at <a href="https://www.keplergrp.com/about">Kepler</a>, a digital marketing agency.</p>
<p>My most recent project was building out a more robust authentication and authorization system, in which I automated our policy management and deployment, as well as set up a replica of our auth system in development.</p>
<p>Through <a href="https://getmagic.org/about">MAGIC (More Active Girls in Computing)</a>, I <a href="https://www.youtube.com/watch?v=F_-IkRu3eQc">mentor high school girls</a> interested in STEM, and also recently gave an <a href="https://genesysworks.app.box.com/s/6psot0f1q219lcdyrwp9grbirnyjqc1b">Intro to Programming talk</a> at <a href="https://genesysworks.org/about-us/">Genesys Works</a>.</p>
<p>Aside from the technical, I like to <a href="https://www.goodreads.com/user/show/4956867-leah">read</a>, and also run, though it's probably a stretch to say I "like to" do that 😅.</p>
<p>You can get in touch with me via <a href="mailto:[email protected]">email</a>, check out my <a href="https://github.com/leahein">Github</a>, or connect with me on <a href="https://linkedin.com/in/leaheinhorn">LinkedIn</a>.</p>
</div>
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>