-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 1020 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
---
title: ''
layout: default
---
{% for post in site.posts %}
<article class="post">
<header class="post-header">
<h2 class="post-title"><a href="{{ site.github_url }}{{ post.url }}">{{ post.title }}</a></h2>
</header>
<section class="post-excerpt">
<p>{{ post.description }}</p>
</section>
<footer class="post-meta">
by <a href="{{ site.github_url }}about">{{ site.author.name }}</a> <img class="author-thumb" src="{{ site.author.picture }}" alt="{{ site.author.name }}">
<time class="post-date" datetime="{{ post.date | date: "%-Y-%m-%d" }}">{{ post.date | date: "%d %b %Y" }}</time>
</footer>
</article>
{% endfor %}
<nav class="pagination" role="navigation">
<span class="page-number">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a class="older-posts" href="{{ paginator.next_page_path }}">Older Posts <span aria-hidden="true">→</span></a>
{% endif %}
</nav>