-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·32 lines (31 loc) · 983 Bytes
/
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
---
layout: home
title: Home
---
<div class="post">
<div class="posts">
<div class="about">
<p>Albano Drazhi | A blog about security & software engineering.</p>
</div>
<hr>
<h3>Recent posts <a href="/blog">All Posts</a></a></h3>
{% for post in site.posts limit:5 %}
<hr>
<div class="post">
<h4 class="post-title-home">
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h4>
<div class="post-description-home">
<span>
<i class="fa fa-calendar"></i> <time datetime="{{post.date | date: "%Y-%m-%d"}}">{{ post.date | date: "%B %e, %Y" }}</time>
</span>
{% if post.lang == "pt" %}
<i class="flag flag-pt" title="Post written in Albanian"></i>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>