-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 819 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
---
layout: default
---
<section>
<header class="major">
<h2>Recent Posts</h2>
</header>
<div class="posts">
{% for post in site.posts %}
{% assign mod3 = forloop.index | modulo: 3 %}
<article>
<a class="image"><img src="{{ post.image | absolute_url }}" alt="" style="width:200px;height:200px;" /></a>
<header>
<span class="date">{{ post.date | date_to_string }}</span>
<h2>{{ post.title }}</h2>
</header>
<p>{{ post.excerpt }}</p>
<ul class="actions">
<li><a href="{{ post.url | absolute_url }}" class="button">... more</a></li>
</ul>
</article>
{% endfor %}
</div>
</section>