-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 956 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
---
layout: default
title: Home
---
<section id="posts">
{% for post in site.posts %}
<a href="{{ post.url }}">
<article class="post row">
<div class="date hidden-phone span2">
<span class="day">{{ post.date | date: "%-d" }}</span>
<span class="month">{{ post.date | date: "%b" }}</span>
<span class="year">{{ post.date | date: "%Y" }}</span>
</div>
<div class="content span10">
<h1>{{ post.title }}</h1>
<div class="date visible-phone">
<span class="day">{{ post.date | date: "%-d" }}</span>
<span class="month">{{ post.date | date: "%B" }}</span>
<span class="year">{{ post.date | date: "%Y" }}</span>
</div>
<div class="excerpt">{{ post.excerpt }}</div>
</div>
</article>
</a>
{% endfor %}
</section>