forked from elixir-lang/elixir-lang.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (19 loc) · 842 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
---
title: Blog
section: blog
layout: blog
---
<div class="hfeed">
{% for post in site.posts %}
<div class="hentry post">
<div class="sticky-header">
<h2 class="entry-title"><a class="spec" href="{{ post.url }}" title="{{ post.title }}" rel="bookmark">{{ post.title }}</a></h2>
<div class="byline">{{ post.date | date: "%B %d, %Y" }}{% if post.author %} · by {{ post.author}}{% endif %} . in {% for category in post.categories %}<a href="/blog/categories.html#{{category}}" class="category">{{ category }}</a>{% endfor %}</div>
</div><!-- .sticky-header -->
<div class="entry-summary">
{{ post.excerpt }}
</div><!-- .entry-summary -->
<p><a href="{{ post.url }}" title="{{ post.title }}" rel="bookmark">Continue reading →</a></p>
</div>
{% endfor %}
</div><!-- .hfeed -->