This repository has been archived by the owner on Oct 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (71 loc) · 3.61 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
<!DOCTYPE html>
<html>
<head>
<title>Michael Bolens</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./assets/css/reset.css"/>
<link rel="stylesheet" type="text/css" href="./assets/css/style.css"/>
</head>
<body>
<header class="top-bar">
<div class="top-bar--content">
<h1 class="top-bar--name">Michael Bolens</h1>
<nav class="top-bar--nav">
<ul class="clearfix">
<li class="top-bar--nav-item">
<a href="./index.html">About</a>
</li>
<li class="top-bar--nav-item">
<a href="./portfolio.html">Portfolio</a>
</li>
<li class="top-bar--nav-item">
<a href="./contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="content">
<div class="row clearfix">
<div class="col col--wide">
<section id="about" class="block">
<h2 class="block--title">About</h2>
<hr class="block--bar" />
<div class="block--content clearfix">
<img class="image about--image" src="./assets/images/michael-bolens.jpg" alt="Michael Bolens" />
<p class="about--text">
Technology has always been a passion of mine, I have grown up enjoying figuring out how electronics worked. In high school that branched into teaching myself how to code programs on my graphing calculator for math class and eventually to other languages and web development. As a web developer, my experiance is primarily front-end with some exposure to back-end. I worked in a ASP.NET mvc environment working on CMS's such as Sitecore, Kentico, and Umbraco.
</p>
<p class="about--text">
In addition to technology, my other passions include music, snowboarding and skiing, disc golf, hiking, biking, craft beer, whiskey, and video games. My favorite producers include Pretty Lights, Odesza, Kasbo, Illenium, and Palastic among others. I skied for 5 years prior to snowboarding and have only skied once since then. Disc golf is something that I picked up as a side hobby to get out and explore even more places around me. My favorite kinds of beers are IPAs and farmhouse ales. As far as whiskey goes, I am definitely more of a fan of Ryes and Bourbons.
</p>
</div>
</section>
</div>
<div class="col col--narrow">
<section id="connect" class="block">
<h3 class="block--title">Connect with Me</h3>
<hr class="block--bar" />
<div class="block--content block-content__small">
<ul class="connect--icons">
<li>
<a target="_blank" href="https://github.com/bolensmichael"><img src="./assets/images/if_github_square_black_107109.svg" alt="GitHub"/></a>
</li>
<li>
<a target="_blank" href="https://www.linkedin.com/in/michaelbolens/"><img src="./assets/images/if_linkedin_square_color_107091.svg" alt="LinkedIn" /></a>
</li>
<li>
<a target="_blank" href="https://stackoverflow.com/users/2482508/bolensmichael"><img src="./assets/images/if_overflow_334695.svg" alt="Stack Overflow" /></a>
</li>
</ul>
</div>
</section>
</div>
</div>
</div>
<footer class="bottom-bar">
<span class="bottom-bar--text">© 2017 Michael Bolens</span>
</footer>
</body>
</html>