Use .html instead of .html.twig

This commit is contained in:
Oliver Davies 2015-06-15 09:35:12 +01:00
parent fca665e9af
commit a840a380a3

14
source/blog.html Normal file
View file

@ -0,0 +1,14 @@
---
layout: default
title: Blog
body_class: page--blog
use:
- posts
---
<h1>Blog</h1>
<ul>
{% for post in data.posts %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>