-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 2 KB
/
index.html
File metadata and controls
54 lines (53 loc) · 2 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
42
43
44
45
46
47
48
49
50
51
52
53
54
---
layout: default
---
<div class='row middle-xs'>
<div class='col-xs-12 col-sm-6'>
<h1 class='title--page'>
Hey, my name is Andy.
</h1>
<p class='paragraph paragraph--marginTop paragraph--marginBottom'>
I am a full stack developer and native Ohioan currently residing in Cincinnati, OH. Currently interested in all things Ember. Also, I like beer quite a lot. Feel free to say hey!
</p>
<div class='row center-xs'>
<div class='col-xs-3'>
<a class='link link--twitter' href="https://twitter.com/AndyO1217" target="_blank">
<i class='icon-social-twitter icons icon--large'></i>
</a>
</div>
<div class='col-xs-3'>
<a class='link link--linkedin' href="https://www.linkedin.com/pub/andrew-orahoske/31/959/310" target="_blank">
<i class='icon-social-linkedin icons icon--large'></i>
</a>
</div>
<div class='col-xs-3'>
<a class='link link--facebook' href="https://www.facebook.com/orahoske.2" target="_blank">
<i class='icon-social-facebook icons icon--large'></i>
</a>
</div>
<div class='col-xs-3'>
<a class='link link--github' href="https://github.com/AO16" target="_blank">
<i class='icon-social-github icons icon--large'></i>
</a>
</div>
</div>
</div>
<div class='col-xs-12 col-sm-6'>
<div class='container--padded-top-bottom'>
<img class='img--full img--border' src="/images/profile.jpg" alt="Andy Orahoske" title="Andy Orahoske" />
</div>
</div>
</div>
<div class='row'>
{% for post in site.posts %}
<div class='col-xs-12 post-summary'>
<a class='post-summary__link link link--primaryColor' href='{{ post.url | prepend: site.baseurl | prepend: site.url }}'>
<div class='post-summary__date'>{{ post.date | date: '%B %-d, %Y' }}</div>
<h2 class='title--post'>{{ post.title | xml_escape }}</h2>
<p class='paragraph'>
{{ post.summary }}
</p>
</a>
</div>
{% endfor %}
</div>