-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (19 loc) · 760 Bytes
/
index.html
File metadata and controls
21 lines (19 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: layout
title: Blog by Diedrik De Mits
overview: true
---
<section class="posts">
<h1>Recent Posts</h1>
{% for post in site.posts offset: 0 limit: 5 %}
<article onclick="window.location='{{post.url}}';">
<header>
<img class="avatar" src="{{ post.authoravatar }}" />
<h1 class="article-title">{{ post.title }}</h1>
<h2 class="metadata">Written by <a href="{{ post.authorurl }}" onclick="event.stopPropagation();">{{ post.author }}</a></h2>
<time datetime="{{ post.date }}">{{ post.date | date_to_long_string }}</time>
</header>
<div class="article-content">{{ post.excerpt }}</div>
</article>
{% endfor %}
</section>