136 lines
4.3 KiB
HTML
136 lines
4.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Zev Averbach</title>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/basscss/7.0.0/css/basscss.css" />
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
|
|
<style>
|
|
body {font-family: "Open Sans", sans-serif}
|
|
.h0 {font-size: 30pt;}
|
|
nav a[target="_blank"]:after {content: url("./static/_external_link.png");
|
|
filter: invert(100%);}
|
|
.current-page {opacity: .3;}
|
|
|
|
</style>
|
|
<script src="./static/_nav.js"></script>
|
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-123137342-1"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'UA-123137342-1');
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<header class="m2 clearfix">
|
|
|
|
<div class="h0 bold">
|
|
<a id="title" href="/" style="text-decoration: none; color: inherit;">Zev Averbach</a>
|
|
</div>
|
|
|
|
<nav class="white bg-white">
|
|
<div id="nav">
|
|
|
|
|
|
|
|
<a href="/"
|
|
class="btn btn-primary not-rounded py2"
|
|
|
|
style="color: #80bfff; background: #001f3f;">About</a>
|
|
|
|
|
|
|
|
|
|
|
|
<a href="projects"
|
|
class="btn btn-primary not-rounded py2"
|
|
|
|
style="color: #b3dbff; background: #0074D9;">Projects</a>
|
|
|
|
|
|
|
|
|
|
|
|
<a href="https://www.dropbox.com/s/w57srsvmuhufqrv/Zev%20Averbach%20Full%20Stack%20Developer%20Resume%202019.pdf?dl=0"
|
|
class="btn btn-primary not-rounded py2"
|
|
|
|
target="_blank"
|
|
|
|
style="color: #004966; background: #7FDBFF;">Resume</a>
|
|
|
|
|
|
|
|
|
|
|
|
<a href="https://www.linkedin.com/in/zev-averbach-964572156/"
|
|
class="btn btn-primary not-rounded py2"
|
|
|
|
target="_blank"
|
|
|
|
style="color: #0e3e14; background: #2ECC40;">LinkedIn</a>
|
|
|
|
|
|
|
|
|
|
|
|
<a href="https://github.com/zevaverbach/"
|
|
class="btn btn-primary not-rounded py2"
|
|
|
|
target="_blank"
|
|
|
|
style="color: #00662c; background: #01FF70;">Github</a>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
<div id="content" class="clear h2 m2 sm-col sm-col-12 md-col-10 lg-col-8">
|
|
|
|
|
|
<p class="mx2 ml2 h3">Hi, my name is Zev. I'm a full stack web developer living in Burlington, Vermont.</p>
|
|
|
|
<p class="mx2 ml2 h3" id="availability">
|
|
As of <span id="work-availability-date">August 2018</span> I'm available for full-time employment
|
|
and contracts.
|
|
|
|
My preferred stack is</p>
|
|
<ul class="h3 ml2">
|
|
<li>React.js</li>
|
|
<li>Python</li>
|
|
<li>Flask</li>
|
|
<li>Pytest</li>
|
|
<li>SQLAlchemy</li>
|
|
<li>MySQL</li>
|
|
<li>AWS</li>
|
|
</ul>
|
|
|
|
<p class="mx2 ml2 h3">I love to help forward-looking businesses solve their worst headaches via technology.
|
|
<a href="/projects">Here</a> are a few projects I've completed to that effect.
|
|
</p>
|
|
|
|
<p class="mx2 ml2 h3" id="contact">You can reach me at
|
|
<a title="Email Zev Averbach" href="mailto:zev@averba.ch">zev@averba.ch</a>.
|
|
</p>
|
|
|
|
<script>
|
|
|
|
const monthNames = ['January', 'February', 'March', 'April', 'May', 'June', 'July',
|
|
'August', 'September', 'October', 'November', 'December'];
|
|
workAvailabilityDate = document.querySelector('#work-availability-date');
|
|
const date = new Date();
|
|
workAvailabilityDate.innerHTML = `${monthNames[date.getMonth()]} ${date.getFullYear()}`;
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</div>
|
|
</body>
|
|
</html> |