diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-06-17 11:41:02 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-06-17 11:41:02 +0100 |
commit | 888b5ad4bce531080373aeeb9918b0bbc3f15784 (patch) | |
tree | 147eeb384cb1bdc8c67388ab985379112e9a8ebe /blog | |
parent | 1123611878855ee381a8e333ef7f3be4be5d7e8f (diff) | |
parent | d43760d34514720807c5f629067c2fe2bac4b813 (diff) |
Merge branch 'gh-pages-blog' into gh-pages
Diffstat (limited to 'blog')
-rw-r--r-- | blog/index.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/blog/index.html b/blog/index.html new file mode 100644 index 000000000..871987aca --- /dev/null +++ b/blog/index.html @@ -0,0 +1,15 @@ +--- +layout: page +title: Blog +--- + +<h1>Blog</h1> + +<ul class="list-of-blog-posts"> +{% for post in site.posts %} + <li class="listed-blog-post"> + <h2 class="blog-title"><a href="{{ post.url }}">{{ post.title }}</a> <small class="meta meta--date">{{ post.date | date: "%d %B %Y" }}</small></h2> + {{ post.content }} + </li> +{% endfor %} +</ul> |