-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (41 loc) · 1.45 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
---
layout: home
title: Home
---
<div class="home">
<div class="avatar-container">
<img src="/assets/images/me.jpg" alt="Mohammad Mahdi Ramezanpour" />
</div>
<div class="note">
<h1>Mohammad M. Ramezanpour</h1>
<p>
Hello and Welcome! My name is Mohammad and I am a Software developer since
2002, husband since 2012, and father since 2017. Also a bookworm, math
lover, and physics enthusiast. I use this website write about my
experiences and new things that I learn through my life. I made tons of
mistakes, failed so much I can't remember the amount, and wasted a lot of
time; but, I did my best to learn from them.
</p>
<p>
Currently, my focus is around Python, Golang, the C programming language,
and people management.
</p>
</div>
<nav class="menu">
<a href="{% link index.html %}">Home</a> |
<a href="{% link blog/index.html %}">Blog</a> |
<a href="{% link about.markdown %}">About</a> |
<a href="{% link contact.markdown %}">Contact</a> |
<a href="https://www.goodreads.com/ramezanpour">Books</a> |
<a href="{% link feed.xml %}">RSS</a>
</nav>
</div>
<div class="home-sub-section">
<div class="latest-posts">
<h3>Lastest posts from the <a href="/blog">blog</a></h3>
{% for post in site.posts limit:12 %}
<a class="latest-post-item" href="{{ post.url }}">{{ post.title }}</a>
<small>{{ post.date | date_to_string }}</small>
{% endfor %}
</div>
</div>