-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.03 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
---
layout: default
---
<header id="home-header" class="false">
<div class="container">
<h1>{{ site.title }}</h1>
<ul class="icons">
<li><a class="fa fa-2x fa-github" href="https://github.com/igormp"><span class="description">GitHub</span></a></li>
<li><a class="fa fa-2x fa-twitter" href="https://twitter.com/igormp"><span class="description">Twitter</span></a></li>
<li><a class="fa fa-2x fa-linkedin" href="https://linkedin.com/in/igormp2"><span class="description">LinkedIn</span></a></li>
<li><a class="fa fa-2x fa-telegram" href="https://t.me/igormp"><span class="description">Telegram</span></a></li>
</ul>
</div>
</header>
<article>
<div class="container">
<ul class="posts">
{% for post in site.posts %}
<li>
<h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
<span class="meta">
{{ post.date | date_to_string }}
</span>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>
</div>
</article>