-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (21 loc) · 1.01 KB
/
index.html
File metadata and controls
23 lines (21 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: default
---
{% include hero.html %}
<section class="grid-block col grid-container section-articles">
{% for post in paginator.posts %}
{% assign author = site.data.authors[post.author] %}
<article class="article">
<a class="h3 weight-strong" href="/blog{{ post.url }}">{{ post.title }}</a>
<div class="grid-block margin-top-sm author">
<img class="margin-right-xxs avatar" src="{{ site.baseurl }}/images/{{ author.avatar }}" height="27" width="27">
<span class="post-author text-gray">by <a class="link" href="{{ site.baseurl }}/{{ author.author_page }}">{{ author.display_name }}</a> <time datatime="{{ post.date }}">{{ post.date }}</time></span>
</div>
<p class="p article-body margin-top-sm">{{ post.excerpt }}</p>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Keep reading</a>
</article>
{% endfor %}
<section class="grid-block shrink justify-center align-center section-footer">
{% include pagination.html %}
</section>
</section>