-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (68 loc) · 2.16 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
---
layout: home
---
<div id="me" class="wrapper cf">
<img class="clip-circle" src="images/omrimor.jpg" alt="Omri Mor" width="200">
<p class="bio">
My name is Omri Mor and i'm a product designer and front end developer from TLV, Israel.
</p>
<div class="elsewhere-bio-container">
<ul class="elsewhere-links cf">
<li>
<a class="link-mail" href="mailto:[email protected]">
<i class="fa fa-envelope-o"></i>
</a>
</li>
<li>
<a class="link-twitter" href="https://twitter.com/omrimorr" target="_blank">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a class="link-dribbble" href="https://dribbble.com/omri" target="_blank">
<i class="fa fa-dribbble"></i>
</a>
</li>
<li>
<a class="link-github" href="https://github.com/omrimor" target="_blank">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
</div>
</div>
<!-- <div id="posts" class="wrapper wrapper-content cf">
<h2>Posts</h2>
<ul>
{% for post in site.categories['blog'] %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
<span class="meta">{{post.date | date: '%B %Y'}}</span>
</li>
{% endfor %}
</ul>
</div>
-->
<div id="work" class="wrapper wrapper-content cf">
<h2>Selected Work</h2>
<ul>
{% for post in site.categories['work'] %}
<li class="project">
<img class="clip-circle" src="{{ post.lead-image }}" alt="Molto" width="200">
<h3>{{ post.title }}</h3>
<span class="meta">{{post.date | date: '%Y'}}</span>
<p>{{ post.desc }}</p>
<a href="{{ post.url }}">Read Case Study</a>
{% if post.website %}
<a href="{{ post.website}}" target="_blank">Visit Site</a>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
<!--
<div id="code" class="wrapper wrapper-content cf">
<h2>Coding Projects</h2>
<ul></ul>
</div>
-->