-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (28 loc) · 880 Bytes
/
index.html
File metadata and controls
32 lines (28 loc) · 880 Bytes
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: default
title: Home
---
<div class="home">
<div class="post-list">
{% for post in site.posts limit:5%}
<article class="post_card post">
<header class="post_header">
<h2 class="post_title"><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title}}</a></h2>
<time class="post_date">{{ post.date | date: "%d %B %Y, %A" }}</time>
</header>
<div class="post_excerpt">
<p>
{% if post.description %}
{{ post.description}}
{% else %}
{{ post.excerpt }}
{% endif %}
<a class="read-more" href="{{ post.url | prepend: site.baseurl }}">[read more]</a>
</p>
</div>
<hr/>
</article>
{% endfor %}
<div class="pagination older-post"><a href="./archive"><data data-icon="ei-arrow-right"></data> Archive </a></div>
</div>
</div>