source/blog.html (10 lines of code) (raw):
---
---
{% include header.html %}
<h1>Blog</h1>
{% for post in site.posts %}
<a href="{{ site.baseurl }}{{ post.url }}"><h2>{{ post.title }}</h2></a>
<p>Posted <b>{{ post.date | date: "%Y-%m-%d" }}</b> by <b>{{ post.author }}</b></p>
{{ post.content }}
{% endfor %}
{% include footer.html %}