aboutsummaryrefslogtreecommitdiff
path: root/_layouts/home.html
blob: 5fea7262170e9782c322fda70387c38d85549b17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
layout: default
---

{{ content }}

{% for post in site.posts limit:5 %}
<div class="post">
  <h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
  <span class="post-date">{{ post.date | date: "%B %-d, %Y" }}</span>
  {{ post.excerpt }}
</div>
{% endfor %}