summaryrefslogtreecommitdiffhomepage
path: root/website/content/blog/index.html
blob: f10f5524d3c34ec62f5e93c7b2c097229a26ae91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
title: Blog
layout: blog
---

{% for post in paginator.posts %}
<div>
  <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
  <div class="blog-meta">
    {% include byline.html authors=post.authors date=post.date %}
  </div>
  <p>{{ post.excerpt | strip_html }}</p>
  <p><a href="{{ post.url }}">Full Post &raquo;</a></p>
</div>
{% endfor %}
{% include paginator.html %}