-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·43 lines (40 loc) · 1.48 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
---
layout: default
title: Home
---
{% assign latest_post = site.posts.first %}
<main class="home">
<div class="home__author">
<img src="{{site.url}}/public/evrim-persembe.jpg" alt="Evrim Persembe" class="home__image" />
<section class="home__info">
<div class="home__title">
Hi, I’m <span class="home__brand">Evrim.</span>
</div>
<p class="home__paragraph">
I’m a software developer and an entrepreneur.
</p>
<p class="home__paragraph">
My main interests are startups and online education.
</p>
<div class="home__social-icons">
<a href="https://github.com/evrimfeyyaz" class="home__social-link">
<img src="{{site.url}}/public/github-square.svg" alt="Evrim's GitHub Page" class="home__social-icon">
</a>
<a href="https://twitter.com/evrimfeyyaz" class="home__social-link">
<img src="{{site.url}}/public/twitter-square.svg" alt="Evrim's Twitter Page" class="home__social-icon">
</a>
<a href="https://instagram.com/evrimfeyyaz" class="home__social-link">
<img src="{{site.url}}/public/instagram-square.svg" alt="Evrim's Instagram Page" class="home__social-icon">
</a>
</div>
</section>
</div>
<div class="home__bottom-info">
<p>
Latest post: <a href="{{latest_post.url}}" class="link">{{latest_post.title}}</a>
</p>
<p class="home__get-in-touch">
You can get in touch with me at [email protected].
</p>
</div>
</main>