-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (43 loc) · 1.5 KB
/
index.html
File metadata and controls
44 lines (43 loc) · 1.5 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
---
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 thank you for stopping by! You've reached the personal website
of Mohammad Mahdi Ramezanpour — a software engineer, husband, and father.
</p>
<p>
This is where I share my blog, writing about a variety of topics — mostly
centered around software engineering and computer science. Please check
the <a href="{% link about.markdown %}">about page</a> for more. For
inquiries, pleaes check the information on the
<a href="{% link contact.markdown %}">contact page</a>.
</p>
</div>
<nav class="menu">
<a href="{% link index.html %}">Home</a> |
<a href="{% link about.markdown %}">About</a> |
<a href="{% link blog/index.html %}">Blog</a> |
<a href="https://linkedin.com/in/ramezanpour" target="_blank">LinkedIn</a> |
<a href="https://www.goodreads.com/ramezanpour" target="_blank"
>Books I read</a
>
| <a href="{% link contact.markdown %}">Contact</a> |
<a href="{% link feed.xml %}">RSS</a>
</nav>
</div>
<div class="home-sub-section">
<div class="latest-posts">
<h3>Latest Posts</h3>
{% for post in site.posts limit:20 %}
<a class="latest-post-item" href="{{ post.url }}">{{ post.title }}</a>
<small>{{ post.date | date_to_string }}</small>
{% endfor %}
</div>
</div>